Jump to content

Yogesh Raghav

Members
  • Posts

    53
  • Joined

  • Last visited

6 Followers

About Yogesh Raghav

  • Birthday 09/03/1985

Profile Information

  • Location
    Gurgaon
  • Interests
    Exploring and Learning New technologies and playing Cricket
  • Activity
    Web development agency

Recent Profile Visitors

332 profile views

Yogesh Raghav's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. no iam in search..asking on forum..waiting for someone to respond
  2. well i managed to get Customer_Id,Order_Id,$Reference_No,Payment_Type,Total_pays,Current_status using query $query='select * from '._DB_PREFIX_.'order_state_lang posl JOIN '._DB_PREFIX_.'orders po on po.current_state=posl.id_order_state JOIN '._DB_PREFIX_.'customer pc on pc.id_customer=po.id_customer and po.id_order='.$id_order; and in view.tpl file i written <table border='1' style="color:grey"> <TH style="padding:1%">{l s='Customer Id'}</TH> <TH style="padding:1%">{l s='Order Id'}</TH> <TH style="padding:1%">{l s='Reference No'}</TH> <TH style="padding:1%">{l s='Payment Type'}</TH> <TH style="padding:1%">{l s='Total Paid'}</TH> <TH style="padding:1%">{l s='Current Status'}</TH> <tr> {foreach $my_order_id item} <td>{$Customer_Id}</td> <td>{$Order_Id}</td> <td>{$Reference_No}</td> <td>{$Payment_Type}</td> <td>{$Total_pays|number_format:2}</td> <td>{$Current_status}</td> {/foreach} but using this iam only manage to get 1 order per person and not total no of orders example On running i get in my Ordercontroller tab iam getting only Single entry Customer Id Order Id Reference No Payment Type Total Paid Current Status 3 9 QSNDMLVUG Bank wire 600.00 Awaiting bank wire payment I want result in below way like every orders should be displayed for that particular customer Customer Id Order Id Reference No Payment Type Total Paid Current Status 3 ___________ 3 ___________ 3 9 ________ 10 ________ 12 QSNDMLVUG ____________ WSTRRTAAR ____________ DRAWWTTS Bank wire _____________ Cod _____________ Prepaid 600.00 _________ 1200.00 _________ 800.00 Awaiting bank wire payment _____________________ Refunded ______________________ Shipped Like what change do i need to make. kindly your help please???
  3. wel its like when some one clicks button all details like refunds,product name,date ordered and quantity shud be visible
  4. Well i want to get this functionality in admin dasboard in orders tab like if we click particular order id for a particulat customer than his/her transaction history including refunds ,product purchased,quantity,date and type of payment done by him...a sequence of all this ..here what i mean can i get any solutions please?
  5. I want to know that how we can restrict a new employee or some specific employee from accessing the feature price from admin product controller. we dont want this user to add or update price.in short we want to disable the tab price when this employee adds /updates products. also iam trying the same by overriding AdminProductsController but iam unable to call employee id in it we can call an employee id in default AdminEmployeeController like $emp_id = $this->context->employee->id; but how to call the same in AdminProductController?do we need to redeclare class or what. i just want that a particular employee wont be able to access the price tab while adding price and i want some thing like pointer-events: none; to that click event to "price" tab so i want to know how to achieve this? any idea?
×
×
  • Create New...