Commit 34fa37c5 authored by hj's avatar hj

更新提交

parent 03f227bb
......@@ -196,7 +196,8 @@ class OrdersController extends Controller
* @OA\items(
* @Property(property="pCode", @Schema(type="string"),description="产品code"),
* @Property(property="num", @Schema(type="integer"),description="产品数量"),
* @Property(property="siCusNote", @Schema(type="integer"),description="备注"),
* @Property(property="siCusNote", @Schema(type="string"),description="备注"),
* @Property(property="siSendNote", @Schema(type="string"),description="发货备注"),
* ),description="当前页数"),
* example={
"soCusPo": "2000000011111",
......@@ -210,6 +211,8 @@ class OrdersController extends Controller
"items": {{
"pCode": "R000001-20mg",
"num" : "1",
"siCusNote" : "备注",
"siSendNote" : "发货备注",
* }}
* }
* )
......
......@@ -213,6 +213,9 @@ class RhawnOrdersService
if(isset($v['si_cus_note'])){
$soitem['si_cus_note'] = $v['si_cus_note'];
}
if(isset($v['si_send_note'])){
$soitem['si_send_note'] = $v['si_send_note'];
}
if(isset($v['si_molbase_pog'])){
$soitem['si_molbase_pog'] = $v['si_molbase_pog'];
}
......
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