This commit is contained in:
shuo.wang
2025-06-04 17:43:23 +08:00
parent 2c50b237f8
commit 022b91b9fb

View File

@@ -197,7 +197,8 @@ public class LinePayServiceImpl implements LinePayService {
linePayDAO.updateLinePay(linePayDO); linePayDAO.updateLinePay(linePayDO);
} else { } else {
linePayDO.setPaymentReceiptCode(getPaymentReceiptCode()); linePayDO.setPaymentReceiptCode(getPaymentReceiptCode());
linePayDAO.addLinePay(linePayDO); Long payId = linePayDAO.addLinePay(linePayDO);
linePayDO.setId(payId);
} }
if (shopSubStageInfo.getShopSubStageStatus().equals(ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_71.getShopSubStageStatus())) if (shopSubStageInfo.getShopSubStageStatus().equals(ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_71.getShopSubStageStatus()))
{ {