Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

delivery address not shown on admin orders


Guest

Recommended Posts

Hi all,

I have a problem with the orders being processed. I can looka t the order but i can see the payment details and costs etc. but no delivery address or ship to address.

 

I have looked in my admin area but can not see a option to put them on.

 

Can anyone help.

 

I am using MS1

 

Mark

Link to comment
Share on other sites

The problem report is very puzzling, since admin/orders.php 1.107 unconditionally displays the shipping and billing addresses, as has every version since 1.103.

 

Do you see the header text "Shipping Address:" and "Billing Address:" and blanks next to them?

 

Have you checked to see if the addresses are stored in the database entries for the order (in the orders table)?

Link to comment
Share on other sites

hey,

to answer your questions the addresses are stored in the database orders, I can see all the details there.

 

when i look at the orders in admin no address appears, even on the invoice sold to and ship to are blank

 

when the customer gets the email stating what they have ordered the delivery address and billing address headings show but no text below.

 

I have used someones elses checkout_process.php file and still the same error, no addresses shown.

 

I am soo confused

Link to comment
Share on other sites

Here it is

 

/*

$Id: orders.php,v 1.107 2003/02/06 17:37:08 thomasamoulton Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2002 osCommerce

 

Released under the GNU General Public License

*/

 

i am gratefull for your help

 

mark

Link to comment
Share on other sites

/*

$Id: orders.php,v 1.3 2003/02/15 23:41:28 wilt Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2002 osCommerce

 

Released under the GNU General Public License

*/

 

just tried this version as well no good!!!

Link to comment
Share on other sites

/*

$Id: checkout_process.php,v 1.10 2003/02/16 15:40:39 wilt Exp $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2002 osCommerce

 

Released under the GNU General Public License

*/

tried it with this checkout_process as well still the same

 

grrrrr

Link to comment
Share on other sites

I'm stumped. You must be in some kind of Bermuda Triangle.

 

Do the shipping and billing addresses show in the invoice?

 

Does the shipping address show in the packing slip?

Link to comment
Share on other sites

hi,

No the shipping addresses do not show in the packing slips or the invoices

 

but they are showing in the orders database when i look at them

 

its very strange :cry: :cry: :cry:

 

I am ready to open the store if I can sort this out

 

Mark

Link to comment
Share on other sites

  • 2 months later...

Hi,

 

I have the same problem. Just installed it last week, and orders work, but the shipping address is left blank??

 

I can see their address under the >customers>edit tab, but nowhere to be seen in the invoice or the email to the customer or me? How was this fixed?

 

Weird... Thank's

Link to comment
Share on other sites

Well here some more .

 

Well you use the US as the country and the "state" is selected from the drop down menu then it always works fine. But when you select another country which doesn't have drop-down menu state selection ie AUSTRALIA, then the shipping address goes missing on all orders?

 

Any ideas????

 

cheers :shock:

Link to comment
Share on other sites

well i have definetely found the cause. If you from the US it works fine :D

 

Whenever i select AUS then no shipping address is shown :(

 

If i figure out the fix - i'll post it....cheers

Link to comment
Share on other sites

  • 3 months later...

I hope this can be of help to you all, (it worked for me).

 

I had the sam problems as you described. Address info etc not shown in the admin section when viewing an order, invoice or packing slip.

 

I had installed an add-in: A credit card module to collect the CVV, Issue Number and Valid from date. (i am uk based).

 

The contribution i installed was

http://www.oscommerce.com/community/contributions,868

 

As you end up adding extra fields to the order table (for the info above) the readme.txt tells you to update a query in catalog/includes/classes/order.php to include the new fields.

 

It does not say in the readme to update the file admin/includes/classes/order.php accordingly. Basically to solve the problem i had i just replaced:

 

      $order_query = tep_db_query("select customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, currency, currency_value, date_purchased, orders_status, last_modified from " . TABLE_ORDERS . " where orders_id = '" . tep_db_input($order_id) . "'")

Line 34 approx in the admin/includes/classes/order.php

 

with

 

$order_query = tep_db_query("select customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, cc_cvv, cc_start, cc_issue, currency, currency_value, date_purchased, orders_status, last_modified from " . TABLE_ORDERS . " where orders_id = '" . tep_db_input($order_id) . "'");

 

Hope it helps you.

 

Paul

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...