Commit 70ac21b4 authored by wwccw0591's avatar wwccw0591

更新

parent 8861fd81
...@@ -209,7 +209,7 @@ class OrderServiceModel extends \Business\AbstractModel ...@@ -209,7 +209,7 @@ class OrderServiceModel extends \Business\AbstractModel
$sub_data = $common_model->findByOrderId($order['order_id'], 'reciver_name, reciver_info'); $sub_data = $common_model->findByOrderId($order['order_id'], 'reciver_name, reciver_info');
$address = ''; $address = '';
if($sub_data['reciver_info']) { if($sub_data['reciver_info']) {
$reciver_info = json_decode($sub_data['reciver_info'], true); $reciver_info = unserialize($sub_data['reciver_info']);
$address = $reciver_info['address'].$reciver_info['subaddress']; $address = $reciver_info['address'].$reciver_info['subaddress'];
} }
$where = array('order_id'=>$order['order_id']); $where = array('order_id'=>$order['order_id']);
...@@ -246,6 +246,7 @@ class OrderServiceModel extends \Business\AbstractModel ...@@ -246,6 +246,7 @@ class OrderServiceModel extends \Business\AbstractModel
} }
} }
} }
echo "do shipping\n";
//付款7天内订单确认收货通知 //付款7天内订单确认收货通知
$where = array('msg_status'=>3, 'payment_type'=>5, 'order_state'=> $where = array('msg_status'=>3, 'payment_type'=>5, 'order_state'=>
...@@ -310,6 +311,7 @@ class OrderServiceModel extends \Business\AbstractModel ...@@ -310,6 +311,7 @@ class OrderServiceModel extends \Business\AbstractModel
} }
} }
} }
echo "do reciver";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment