Browse Source

采购单详情,地址列表增加发货数量字段

wufeng 2 years ago
parent
commit
35384a0d38
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/admin/controller/Purch.php

+ 1 - 1
app/admin/controller/Purch.php

@@ -308,7 +308,7 @@ class Purch extends Base
 
         //补充收货地址
         $addr = Db::name('order_addr')
-            ->field('id,addr,addr_code,contactor,mobile')
+            ->field('id,addr,addr_code,contactor,mobile,receipt_quantity')
             ->where(['orderCode' => $data['orderCode'], 'is_del' => 0])
             ->select()
             ->toArray();