|
|
@ -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(); |
|
|
|