From 93b130b87d2302f216c8bdc77e95e47eae0ba331 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期一, 30 九月 2024 09:39:54 +0800
Subject: [PATCH] 订单默认送货
---
CY_ECommercePlatform/CY.WebForm/Pages/business/OrderDeatil.aspx.cs | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/OrderDeatil.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/OrderDeatil.aspx.cs
index e95fd01..d87a2f2 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/OrderDeatil.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/OrderDeatil.aspx.cs
@@ -57,6 +57,10 @@
int orderId = Request["orderIdStr"].ToString().ToInt32().Value;
UpdatePrintState(orderId);
break;
+ case "Printfengqian":
+ int orderIds = Request["orderIdStr"].ToString().ToInt32().Value;
+ UpdatePrintfengqianState(orderIds);
+ break;
default:
Page_Load_Default();
return;
@@ -163,5 +167,20 @@
}
}
}
+
+
+ /// <summary>
+ /// 鏀瑰彉鎵撳嵃灏佺鐘舵��
+ /// </summary>
+ private void UpdatePrintfengqianState(int orderId)
+ {
+
+ if (CurrentUser != null)
+ {
+
+ _eC_OrderBasicBLL.UpdatePrintfengqianState(orderId);
+
+ }
+ }
}
}
\ No newline at end of file
--
Gitblit v1.9.1