This commit is contained in:
邹宗楠
2023-08-18 09:48:00 +08:00
parent 9d2f29bce6
commit 6229fc5acc
2 changed files with 7 additions and 3 deletions

View File

@@ -154,6 +154,10 @@ func (p *PurchaseHandler) OrderDetail2Financial(result map[string]interface{}) (
} else {
err = nil
}
// 区分门店是否为报价门店
// 报价门店商品如果京西系统存在则不管,不存在则获取平台上填写的进货价
if result["package_bag_money"] != nil {
orderFinancial.BoxMoney = utils.MustInterface2Int64(result["package_bag_money"])
}