Commit d300ddd5 authored by hangjun83's avatar hangjun83

更新

parent d78fc173
...@@ -111,9 +111,21 @@ class BhOrdersService ...@@ -111,9 +111,21 @@ class BhOrdersService
$returnItem = []; $returnItem = [];
if($soItems){ if($soItems){
foreach($soItems as $item){ foreach($soItems as $item){
$temp = [];
$temp['b_cn_name'] = $item['b_cn_name'];
$temp['p_code'] = $item['p_code'];
$temp['c_cas'] = $item['c_cas'];
$temp['p_cn_name'] = $item['p_cn_name'];
$temp['si_price'] = $item['si_price'];
$temp['si_discount'] = $item['si_discount'];
$temp['si_p_tod'] = $item['si_p_tod'];
$temp['si_num'] = $item['si_num'];
$temp['si_amount'] = $item['si_amount'];
$temp['si_vamount'] = $item['si_vamount'];
$temp['si_note'] = $item['si_note'];
$item['so_no'] = $sOrder->so_no; $item['so_no'] = $sOrder->so_no;
if($item['si_if_cancel'] == 0){ if($item['si_if_cancel'] == 0){
$returnItem[] = $item; $returnItem[] = $temp;
} }
} }
} }
......
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