This commit is contained in:
xiaoyu
2024-11-29 18:29:49 +08:00
parent 9bcd2cacff
commit 4a6ed71583
+2 -2
View File
@@ -14,7 +14,7 @@ class OrdersList
{
$this->ci = &get_instance();
$this->ci->load->model('receiver/order/receiver_orders_model', 'mdOrders');
$this->ci->load->model('receiver/order/receiver_order_data_model');
$this->ci->load->model('receiver/order/receiver_order_datas_model');
$this->ci->load->model('app/licheb/app_licheb_users_model', 'mdLichebUsers');
$this->ci->load->model('app/licheb/app_licheb_channel_biz_model');
$this->ci->load->model('receiver/receiver_customers_model', 'mdCustomers');
@@ -261,7 +261,7 @@ class OrdersList
$fields['refund_time'] = $val['refund_time'] != '0000-00-00 00:00:00' ? date('Y-m-d', strtotime($val['refund_time'])) : '';
$fields['ck_time'] = $val['ck_time'];
$odata = $this->receiver_order_data_model->get(['o_id' => $val['id']]);
$odata = $this->receiver_order_datas_model->get(['o_id' => $val['id']]);
$fields['contract'] = $odata['contract_img'] ? '有' : '无';
if ($size > 1000) {