diff --git a/application/store/controller/Order.php b/application/store/controller/Order.php index 11f9afd5e..c484bace3 100644 --- a/application/store/controller/Order.php +++ b/application/store/controller/Order.php @@ -74,15 +74,15 @@ class Order extends BasicAdmin // =============== 收货地址过滤 =============== $expressWhere = []; if (isset($get['express_title']) && $get['express_title'] !== '') { - $expressWhere[] = ['real_express_title|express_title', 'like', "%{$get['express_title']}%"]; + $expressWhere[] = ['send_company_title|company_title', 'like', "%{$get['express_title']}%"]; } - foreach (['real_express_no', 'express_province', 'express_city', 'express_area', 'express_username', 'express_phone'] as $field) { + foreach (['send_no', 'username', 'phone', 'province', 'city', 'area', 'address'] as $field) { if (isset($get[$field]) && $get[$field] !== '') { $expressWhere[] = [$field, 'like', "%{$get[$field]}%"]; } } if (isset($get['send_status']) && $get['send_status'] !== '') { - $expressWhere[] = empty($get['send_status']) ? ['real_express_no', 'eq', ''] : ['real_express_no', 'neq', '']; + $expressWhere[] = empty($get['send_status']) ? ['send_no', 'eq', ''] : ['send_no', 'neq', '']; } if (!empty($expressWhere)) { $sql = Db::name('StoreOrderExpress')->field('order_no')->where($expressWhere)->buildSql(true); @@ -138,14 +138,14 @@ class Order extends BasicAdmin return $this->fetch('', $orderExpress); } $data = [ - 'order_no' => $order_no, - 'express_username' => $this->request->post('express_username'), - 'express_phone' => $this->request->post('express_phone'), - 'express_province' => $this->request->post('form_express_province'), - 'express_city' => $this->request->post('form_express_city'), - 'express_area' => $this->request->post('form_express_area'), - 'express_address' => $this->request->post('express_address'), - 'express_desc' => $this->request->post('express_desc'), + 'order_no' => $order_no, + 'username' => $this->request->post('express_username'), + 'phone' => $this->request->post('express_phone'), + 'province' => $this->request->post('form_express_province'), + 'city' => $this->request->post('form_express_city'), + 'area' => $this->request->post('form_express_area'), + 'address' => $this->request->post('express_address'), + 'desc' => $this->request->post('express_desc'), ]; if (DataService::save('StoreOrderExpress', $data, 'order_no')) { $this->success('收货地址修改成功!', ''); diff --git a/application/store/view/order/address.html b/application/store/view/order/address.html index 1260c3f40..c20559109 100644 --- a/application/store/view/order/address.html +++ b/application/store/view/order/address.html @@ -3,7 +3,7 @@
- +
@@ -11,7 +11,7 @@
- +
@@ -33,14 +33,14 @@
- +
- +
@@ -54,7 +54,7 @@ diff --git a/application/store/view/order/index.html b/application/store/view/order/index.html index 802fec81f..fa51b1d26 100644 --- a/application/store/view/order/index.html +++ b/application/store/view/order/index.html @@ -108,49 +108,56 @@
- +
- +
- +
- +
- +
- +
- + +
+
+ +
+ +
+
@@ -248,23 +255,23 @@ {if empty($vo.express)} 无发货信息 {else} - 快递公司:{$vo.express.real_express_title|default=$vo.express.express_title} - {if !empty($vo.express.real_express_title)} + 快递公司:{$vo.express.real_company_title|default=$vo.express.company_title} + {if !empty($vo.express.real_company_title)} - {if $vo.express.real_express_title neq $vo.express.express_title} - {$vo.express.express_title} + {if $vo.express.real_company_title neq $vo.express.company_title} + {$vo.express.company_title} {/if} {/if}
快递单号:{$vo.express.real_express_no|default='未发货'|raw} - 查看 + 查看 快速发货
- 收货信息:{$vo.express.express_username} {$vo.express.express_phone}
- 收货地址:{$vo.express.express_province}{$vo.express.express_city}{$vo.express.express_area}{$vo.express.express_address} + 收货信息:{$vo.express.username} {$vo.express.phone}
+ 收货地址:{$vo.express.province}{$vo.express.city}{$vo.express.area}{$vo.express.address} {if auth('store/order/address')}修改{/if} {/if} {if !empty($vo.express.real_express_at)}
发货时间:{$vo.express.real_express_at|format_datetime}{/if}