From 84f9a6812122e59ba862d2e72c743b29c7ed5f48 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期三, 25 十二月 2024 08:42:13 +0800
Subject: [PATCH] 采购付款
---
CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverWorkBookPrintDetail.aspx.cs | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverWorkBookPrintDetail.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverWorkBookPrintDetail.aspx.cs
index 00558c4..c1fe649 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverWorkBookPrintDetail.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverWorkBookPrintDetail.aspx.cs
@@ -97,7 +97,7 @@
{
//濡傛灉鏄壒閲忔墦鍗�
string orderIdStr = Request["orderId"];
- this.hideOrderId.Value = orderIdStr;
+
//濡傛灉鏄彧鎵撳嵃涓�寮�
string PlanOrderidStr = Request["PlanOrderid"];
@@ -106,9 +106,11 @@
var coreCmsPlanOrders = new List<CoreCmsPlanOrder>();
if (!string.IsNullOrEmpty(orderIdStr))
{
- var ssss = bll_CoreCmsPlanOrderBLL.GetModelByorderid(orderIdStr.ToInt32().Value);
+ orderIdStr = orderIdStr.Substring(1);
+ this.hideOrderId.Value = orderIdStr;
+ var ssss = bll_CoreCmsPlanOrderBLL.GetModelByids(orderIdStr);
coreCmsPlanOrders = ssss.ToList();
- orderkeyid = orderIdStr.ToInt32().Value;
+ orderkeyid = coreCmsPlanOrders[0].orderkeyid.Value;
}
else if (!string.IsNullOrEmpty(PlanOrderidStr))
{
--
Gitblit v1.9.1