This commit is contained in:
邹宗楠
2024-08-05 11:15:30 +08:00
parent f1b802a1c9
commit 892d4f91e3

View File

@@ -77,6 +77,7 @@ func (c *OrderManager) OnOrderComments(orderCommentList []*model.OrderComment) (
OrderId: orderComment.VendorOrderID,
}
err = dao.GetEntity(db, comment2, "OrderId")
globals.SugarLogger.Debugf("==============comment2 := %s", utils.Format4Output(comment2, false))
if err == nil || dao.IsNoRowsError(err) {
isNewComment := false
if dao.IsNoRowsError(err) {
@@ -179,6 +180,7 @@ func (c *OrderManager) OnOrderComments(orderCommentList []*model.OrderComment) (
}
}
} else {
globals.SugarLogger.Debugf("=comment2Update========== %s", utils.Format4Output(comment2, false))
comment2.VendorOrderId = orderComment.VendorOrderID2
_, err = dao.UpdateEntity(db, comment2, "VendorOrderId")
}