Commit 43eee149 authored by Liu lu's avatar Liu lu

【服装对账单】列表和导出增加“纸质账单号”

parent 9b5995d7
......@@ -358,11 +358,19 @@ interface FactoryServiceInterface
/**
* @param string $paperAccountNo 纸质账单号
* @param string $deliveryNo 发货单号
* @return mixed
* @param array $paperAccountInfo 批量要修改的纸质账单发货单号信息
* @example [
* ['paper_account_no'=>'纸质账单号1','delivery_no'=>'发货单号1'] ,
* ['paper_account_no'=>'纸质账单号2','delivery_no'=>'发货单号2'] ,
* ]
* @return array 返回对应发货单号的是否结算完成信息
* @example [
* '发货单号1'=>true , //true 代表提交成功
* '发货单号2'=>'发货单号已结算,请勿重复提交'
* ]
* @author Liu lu
* date 2024-04-16
*/
public function addPaperAccountNo($paperAccountNo,$deliveryNo);
public function addPaperAccountNo(array $paperAccountInfo):array ;
}
\ No newline at end of file
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