Browse Source

[WHAT] Upload Remittance API [WHY] 開發 ShowEasy API

上傳水單完成後。調整欄位
BookingOnline - PaymentStatus、PaymentDate
Payment - PaymentStatus、ModifyDate
Dev
Janie 2 years ago
parent
commit
f02ff6a60f
  1. 7
      EuroTran/EasyBL.WEBAPP/ShowEasy/BookingOnlineService.cs

7
EuroTran/EasyBL.WEBAPP/ShowEasy/BookingOnlineService.cs

@ -189,12 +189,12 @@ namespace EasyBL.WEBAPP.SYS
var sUploadTime = db.Updateable<SETB_SAL_Payment>() //更新付款時間 + 付款狀態
.UpdateColumns(x => new SETB_SAL_Payment { PaymentDate = DateTime.Now })
.UpdateColumns(x => new SETB_SAL_Payment { PaymentDate = DateTime.Now, PaymentStatus = "Y" })
.Where(x => x.BookingID == BookingID)
.ExecuteCommand();
var sBookingStatus = db.Updateable<SETB_SAL_BookingOnline>() //更新訂單狀態
.UpdateColumns(x => new SETB_SAL_BookingOnline { PaymentStatus = "02" })
.UpdateColumns(x => new SETB_SAL_BookingOnline { PaymentStatus = "02", ModifyDate = DateTime.Now })
.Where(x => x.BookingID == BookingID)
.ExecuteCommand();
@ -202,9 +202,6 @@ namespace EasyBL.WEBAPP.SYS
.Where(x => x.BookingID == BookingID)
.Single();
sUser.PaymentStatus = "01";
db.Insertable(sUser).ExecuteCommand();
var sFilePath = db.Queryable<OTB_SYS_Files>() //從file表中取圖
.Where(x => x.ParentID == sUser.Remittance)
.Single();

Loading…
Cancel
Save