Commit 22aefc36 by 王召彬

根据商品id和核销数量添加核销记录

parent 942addba
......@@ -288,4 +288,17 @@ interface OrderInterface
*/
public function addDeliverdLog(int $storeId, int $cmanId, int $amount, int $payOrigin, int $orderClass, array $goodsInfo);
/**
* 根据商品id和核销数量添加核销记录
*
* @param integer $storeId
* @param integer $cmanId 核销的店员id
* @param integer $payOrigin 参加枚举 PayOriginEnum::CARD
* @param array $goodsNums 核销的商品数量 [['id':35, 'num':1, 'amout':56], ['id':45, 'num':2, 'amout':0]]
* @return void
*/
public function addDeliverdLogByGoods(int $storeId, int $cmanId, int $payOrigin, array $goodsNums);
}
\ 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