From cc58b27f5b9fe3a246e57b5b8160a34412eb18c5 Mon Sep 17 00:00:00 2001 From: Janie <109517022+Janie06@users.noreply.github.com> Date: Fri, 31 Mar 2023 09:32:12 +0800 Subject: [PATCH] =?UTF-8?q?InsertBooking=20API=E5=A2=9E=E5=8A=A0=E5=89=8D?= =?UTF-8?q?=E5=8F=B0=E9=A1=AF=E7=A4=BA=E5=88=A4=E6=96=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit byPass流程下單後訂單狀態應為處理中 --- EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs b/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs index f454992..ae97eff 100644 --- a/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs +++ b/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs @@ -1200,6 +1200,15 @@ namespace EasyBL.WEBAPP.ShowEasy .Where(x => x.BookingID == objBookingOnline.BookingID) .ExecuteCommand(); + + if(iRel > 0) + { + + objBookingOnline.SupplierStatus = "01"; + objBookingOnline.BookingStatus = "02"; + + } + #region 一筆賬單 //當時確認訂單后,需要產生一筆賬單資料 var PayPayment = new SETB_SAL_Payment();