From 374ce108d737c1e4d6608989090195a7346d10ad Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期四, 26 二月 2026 08:47:21 +0800
Subject: [PATCH] 优化格式美观度。 完成 (1)“印刷、打包、送货要求”放在右边的格子里面;右边格子拉通 (2)“单价”和“总价”的格子比例要调整适中 (3)把“印件名称”放在第一格 (1)操作中增加“问题处理”,进行处理操作  完成 (2)问题反馈除了生成在这个列表中,还要自动推送给对应订单的下单人或者送货安排(发起工作安排)的安排人,显示在他们的“工作提醒”中,处理完了就在列表中变成已完成问题处理,显示“√”,点“√”进去就显示谁处理的、什么时候处理的。  完成 生产施工单中,选“轮转印刷机”的,删除“纸张数量(张)”和“开料规格”  完成

---
 CY_ECommercePlatform/CY.Model/EC/EC_SpecialForums.cs                                  |    3 
 CY_ECommercePlatform/CY.SQLDAL/OA/OA_DeliverPlanPaicheDAL.cs                          |   16 +
 CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx.cs           |   10 
 CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx             |  175 ++++++++++++++
 CY_ECommercePlatform/CY.WebForm/Pages/business/CorporateClientsDetail.aspx            |   38 +-
 CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.cs          |  137 +++++++++++
 CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx              |   16 
 CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.designer.cs |   62 +++++
 CY_ECommercePlatform/CY.WebForm/CY.WebForm.csproj                                     |    8 
 CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx.cs             |    5 
 CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs                                    |   44 +++
 CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx                |   95 +++++++
 CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiEdit.aspx.cs           |   41 +++
 CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiList.aspx              |   30 ++
 14 files changed, 641 insertions(+), 39 deletions(-)

diff --git a/CY_ECommercePlatform/CY.Model/EC/EC_SpecialForums.cs b/CY_ECommercePlatform/CY.Model/EC/EC_SpecialForums.cs
index 979a937..7a6c161 100644
--- a/CY_ECommercePlatform/CY.Model/EC/EC_SpecialForums.cs
+++ b/CY_ECommercePlatform/CY.Model/EC/EC_SpecialForums.cs
@@ -61,6 +61,9 @@
 
         public string shifouqitadingdan { get; set; }
 
+
+        public string shifouxianshilunzhuan { get; set; }
+
         /// <summary>
         /// 涓婚敭--鏍囪瘑ID
         /// </summary>
diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
index 3c24c8b..2b4e16b 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
@@ -504,6 +504,34 @@
             set;
         }
 
+
+
+        public int? Chulistatus
+        {
+            get;
+            set;
+        }
+        public string ChulistatusName
+        {
+            get
+            {
+                return Chulistatus.HasValue && Chulistatus.Value == 1 ? "鈭�" : "脳";
+            }
+
+        }
+
+        public DateTime? ChuliTime
+        {
+            get;
+            set;
+        }
+
+        public string Chuliren
+        {
+            get;
+            set;
+        }
+
         public int? Zerenren
         {
             get;
@@ -922,7 +950,21 @@
                 this.OrAllUnPayedMoney = isChange ? MyConvert.ConvertToDecimal(value) : OrAllUnPayedMoney;
                 theValue = this.OrAllUnPayedMoney;
             }
-            
+            else if ("Chulistatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 72)
+            {
+                this.Chulistatus = isChange ? MyConvert.ConvertToInt32(value) : Chulistatus;
+                theValue = this.Chulistatus;
+            }
+            else if ("ChuliTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 73)
+            {
+                this.ChuliTime = isChange ? MyConvert.ConvertToDateTime(value) : ChuliTime;
+                theValue = this.ChuliTime;
+            }
+            else if ("Chuliren".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 74)
+            {
+                this.Chuliren = isChange ? MyConvert.ConvertToString(value) : Chuliren;
+                theValue = this.Chuliren;
+            }
 
 
 
diff --git a/CY_ECommercePlatform/CY.SQLDAL/OA/OA_DeliverPlanPaicheDAL.cs b/CY_ECommercePlatform/CY.SQLDAL/OA/OA_DeliverPlanPaicheDAL.cs
index 492fcd3..b3572ad 100644
--- a/CY_ECommercePlatform/CY.SQLDAL/OA/OA_DeliverPlanPaicheDAL.cs
+++ b/CY_ECommercePlatform/CY.SQLDAL/OA/OA_DeliverPlanPaicheDAL.cs
@@ -209,6 +209,17 @@
                 ZerenTime = new SqlParameter("@ZerenTime", DBNull.Value);
             }
 
+
+            SqlParameter ChuliTime = null;
+            if (trueModel.ChuliTime.HasValue)
+            {
+                ChuliTime = new SqlParameter("@ChuliTime", trueModel.ChuliTime.Value);
+            }
+            else
+            {
+                ChuliTime = new SqlParameter("@ChuliTime", DBNull.Value);
+            }
+
             IList<SqlParameter> sqlParms = new List<SqlParameter>()
             {
 
@@ -251,11 +262,14 @@
                                                       new SqlParameter("@Fakuan",trueModel.Fakuan.HasValue?trueModel.Fakuan.Value:0),
                                                       ZerenTime,
                                                       new SqlParameter("@Zerenoperater",string.IsNullOrEmpty(trueModel.Zerenoperater)?"":trueModel.Zerenoperater),
+                                                       new SqlParameter("@Chulistatus",trueModel.Chulistatus.HasValue?trueModel.Chulistatus.Value:0),
+                                                     ChuliTime,
+                                                      new SqlParameter("@Chuliren",string.IsNullOrEmpty(trueModel.Chuliren)?"":trueModel.Chuliren),
 
 
 
             };
-            string sql = "Update OA_DeliverPlanPaiche Set [FirmId]=@FirmId,[BuyerId]=@BuyerId,[DeliveredTime]=@DeliveredTime,[Zhuyishixiang]=@Zhuyishixiang,Gongzuokaoping=@Gongzuokaoping, [CarId]=@CarId, [DriverId]=@DriverId,[Transferstatus]=@Transferstatus, [TransfersTime]=@TransfersTime, [Creater]=@Creater,[CreateTime]=@CreateTime,[Updater]=@Updater,[LastUpdateTime]=@LastUpdateTime,Sort=@Sort,DeliverTime=@DeliverTime,wentifankui=@wentifankui,Yichangchuli=@Yichangchuli,Xingzhengzhuize=@Xingzhengzhuize,SellerOrderId=@SellerOrderId,Dianhua=@Dianhua,Dizhi=@Dizhi,Remark=@Remark,BusinessManagerId=@BusinessManagerId,Biddingcompany=@Biddingcompany,shifouDelivery=@shifouDelivery,Lianxiren=@Lianxiren,CompanyName=@CompanyName,Deliveredstatus=@Deliveredstatus,TransferType=@TransferType,TransferName=@TransferName,Wanjiestatus=@Wanjiestatus,WanjieTime=@WanjieTime,Wanjieren=@Wanjieren,Zerenren=@Zerenren,Fakuan=@Fakuan,ZerenTime=@ZerenTime,Zerenoperater=@Zerenoperater where [Keyid] =@Keyid ";
+            string sql = "Update OA_DeliverPlanPaiche Set [FirmId]=@FirmId,[BuyerId]=@BuyerId,[DeliveredTime]=@DeliveredTime,[Zhuyishixiang]=@Zhuyishixiang,Gongzuokaoping=@Gongzuokaoping, [CarId]=@CarId, [DriverId]=@DriverId,[Transferstatus]=@Transferstatus, [TransfersTime]=@TransfersTime, [Creater]=@Creater,[CreateTime]=@CreateTime,[Updater]=@Updater,[LastUpdateTime]=@LastUpdateTime,Sort=@Sort,DeliverTime=@DeliverTime,wentifankui=@wentifankui,Yichangchuli=@Yichangchuli,Xingzhengzhuize=@Xingzhengzhuize,SellerOrderId=@SellerOrderId,Dianhua=@Dianhua,Dizhi=@Dizhi,Remark=@Remark,BusinessManagerId=@BusinessManagerId,Biddingcompany=@Biddingcompany,shifouDelivery=@shifouDelivery,Lianxiren=@Lianxiren,CompanyName=@CompanyName,Deliveredstatus=@Deliveredstatus,TransferType=@TransferType,TransferName=@TransferName,Wanjiestatus=@Wanjiestatus,WanjieTime=@WanjieTime,Wanjieren=@Wanjieren,Zerenren=@Zerenren,Fakuan=@Fakuan,ZerenTime=@ZerenTime,Zerenoperater=@Zerenoperater,Chulistatus=@Chulistatus,ChuliTime=@ChuliTime,Chuliren=@Chuliren where [Keyid] =@Keyid ";
 
             try
             {
diff --git a/CY_ECommercePlatform/CY.WebForm/CY.WebForm.csproj b/CY_ECommercePlatform/CY.WebForm/CY.WebForm.csproj
index 1f05756..0849623 100644
--- a/CY_ECommercePlatform/CY.WebForm/CY.WebForm.csproj
+++ b/CY_ECommercePlatform/CY.WebForm/CY.WebForm.csproj
@@ -1890,6 +1890,7 @@
     <Content Include="Pages\business\BaozhengjinCuishou.aspx" />
     <Content Include="Pages\business\CorporateClientsSheji.aspx" />
     <Content Include="Pages\business\DeliverPlanDakaList.aspx" />
+    <Content Include="Pages\business\DeliverPlanWentiChuli.aspx" />
     <Content Include="Pages\business\DeliverWorkBookAnPaiDetailsongdao.aspx" />
     <Content Include="Pages\business\DeliverWorkBookAnPaiEdit.aspx" />
     <Content Include="Pages\business\DeliverWorkBookAnPai.aspx" />
@@ -3424,6 +3425,13 @@
     <Compile Include="Pages\business\DeliverPlanDakaList.aspx.designer.cs">
       <DependentUpon>DeliverPlanDakaList.aspx</DependentUpon>
     </Compile>
+    <Compile Include="Pages\business\DeliverPlanWentiChuli.aspx.cs">
+      <DependentUpon>DeliverPlanWentiChuli.aspx</DependentUpon>
+      <SubType>ASPXCodeBehind</SubType>
+    </Compile>
+    <Compile Include="Pages\business\DeliverPlanWentiChuli.aspx.designer.cs">
+      <DependentUpon>DeliverPlanWentiChuli.aspx</DependentUpon>
+    </Compile>
     <Compile Include="Pages\business\DeliverWorkBookAnPaiDetailsongdao.aspx.cs">
       <DependentUpon>DeliverWorkBookAnPaiDetailsongdao.aspx</DependentUpon>
       <SubType>ASPXCodeBehind</SubType>
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx
index 2b236a7..5bceca6 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx
@@ -290,30 +290,30 @@
                                         绾稿紶瑙勬牸
                                     </td>
                                     <td colspan="3">
-                                        绾稿紶鏁伴噺锛堝紶锛�
+                                      <span  style="<%#Eval("shifouxianshilunzhuan")%>" >绾稿紶鏁伴噺锛堝紶锛�</span>       
                                     </td>
                                     <td colspan="4">
-                                        寮�鏂欒鏍�
+                                       <span  style="<%#Eval("shifouxianshilunzhuan")%>" >寮�鏂欒鏍�</span>       
                                     </td>
                                 </tr>
                                 <tr class=" price_tabbg" style="font-weight: bold; background-color: #E6E6E6;<%#Eval("shifouxianshiheban")%>">
                                     <td>
-                                        绾稿紶鏁伴噺
+                                       <span  style="<%#Eval("shifouxianshilunzhuan")%>" >绾稿紶鏁伴噺</span>        
                                     </td>
                                     <td>
-                                        鍗板埛姝f暟
+                                        <span  style="<%#Eval("shifouxianshilunzhuan")%>" >鍗板埛姝f暟</span>       
                                     </td>
                                     <td>
-                                        娑堣��
+                                         <span  style="<%#Eval("shifouxianshilunzhuan")%>" >娑堣��</span>      
                                     </td>
                                     <td colspan="1">
-                                        寮�鏁�
+                                         <span  style="<%#Eval("shifouxianshilunzhuan")%>" >寮�鏁�</span>      
                                     </td>
                                     <td>
-                                        瀹藉害(mm)
+                                        <span  style="<%#Eval("shifouxianshilunzhuan")%>" >瀹藉害(mm)</span>       
                                     </td>
                                     <td>
-                                        闀垮害(mm)
+                                         <span  style="<%#Eval("shifouxianshilunzhuan")%>" >闀垮害(mm)</span>      
                                     </td>
                                 </tr>
                                 <tr style="background-color: #FFFFFF;<%#Eval("shifouxianshiheban")%>">
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx.cs
index f3075f6..83d83ab 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx.cs
@@ -189,6 +189,16 @@
                     eC_SpecialForums.shifouqitadingdan = "display:none;";
                 }
 
+                if (eC_SpecialForums.PSF_PressesDesk.IndexOf("杞浆") >= 0)
+                {
+                    eC_SpecialForums.shifouxianshilunzhuan = "display:none;";
+
+                }
+                else
+                {
+                    eC_SpecialForums.shifouxianshilunzhuan = "display:;";
+                }
+
             }
             this.RepClientList.DataSource = m_EC_SpecialForumsList;
             this.RepClientList.DataBind();
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx
index e06b62a..474a4f6 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx
@@ -284,27 +284,27 @@
                                     绾稿紶瑙勬牸
                                 </td>
                                 <td colspan="3">
-                                    绾稿紶鏁伴噺锛堝紶锛�
+                                <p name="PSF_Zhizhangshuliang" value_selspecspan="<%#Container.ItemIndex + 1%>">绾稿紶鏁伴噺锛堝紶锛�</p>     
                                 </td>
                                 <td colspan="4">
-                                    寮�鏂欒鏍�
+                                  <p name="PSF_Kailiaoguige" value_selspecspan="<%#Container.ItemIndex + 1%>">寮�鏂欒鏍�</p>   
                                 </td>
                             </tr>
                             <tr class=" price_tabbg" style="font-weight: bold; background-color: #E6E6E6;"  name="PSF_PrintedPaperTdtr"  value_selspec="<%#Container.ItemIndex + 1%>">
                                 <td>
-                                    绾稿紶鏁伴噺
+                                   <p name="PSF_Zhizhangshulianga" value_selspecspan="<%#Container.ItemIndex + 1%>">绾稿紶鏁伴噺</p>      
                                 </td>
                                 <td>
-                                    鍗板埛姝f暟
+                                  <p name="PSF_Yinshuazhengshu" value_selspecspan="<%#Container.ItemIndex + 1%>">鍗板埛姝f暟</p>       
                                 </td>
                                 <td>
-                                    娑堣��
+                                  <p name="PSF_Xiaohao" value_selspecspan="<%#Container.ItemIndex + 1%>">娑堣��</p>      
                                 </td>
                                 <td colspan="1" >
                                 <p name="PSF_OpenSpecificationsspan" value_selspecspan="<%#Container.ItemIndex + 1%>">寮�鏁�</p>    
                                 </td>
                                 <td>
-                                  瀹藉害(mm)        
+                                 <p name="PSF_Kuandu" value_selspecspan="<%#Container.ItemIndex + 1%>">瀹藉害(mm)  </p>            
                                 </td>
                                 <td>
                                    <p name="PSF_OpenWidthspan" value_openwidthspan="<%#Container.ItemIndex + 1%>">闀垮害(mm)</p>      
@@ -576,6 +576,15 @@
                 $("input[name='PSF_PrintedCount']").last().attr("value_ppwaerid", value_id + 1);
                 $("select[name='PSF_OpenSpecifications']").last().attr("value_selSpec", value_id + 1);
                 $("p[name='PSF_OpenSpecificationsspan']").last().attr("value_selspecspan", value_id + 1);
+
+                $("p[name='PSF_Zhizhangshuliang']").last().attr("value_selspecspan", value_id + 1);
+                $("p[name='PSF_Kailiaoguige']").last().attr("value_selspecspan", value_id + 1);
+                $("p[name='PSF_Zhizhangshulianga']").last().attr("value_selspecspan", value_id + 1);
+                $("p[name='PSF_Yinshuazhengshu']").last().attr("value_selspecspan", value_id + 1);
+                $("p[name='PSF_Xiaohao']").last().attr("value_selspecspan", value_id + 1);
+                $("p[name='PSF_Kuandu']").last().attr("value_selspecspan", value_id + 1);
+
+
                 $("p[name='PSF_OpenWidthspan']").last().attr("value_openwidthspan", value_id + 1);
                 $("p[name='PSF_yinse']").last().attr("value_openwidthspan", value_id + 1);
                 $("p[name='PSF_yinsezheng']").last().attr("value_openwidthspan", value_id + 1);
@@ -1013,7 +1022,7 @@
                     $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").val("");
                     $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").change();
                     $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").hide();
-                    $(".xialap[value_ppwaerid='" + value_SelWaerId + "']").show();
+                    $(".xialap[value_ppwaerid='" + value_SelWaerId + "']").hide();
                     $("input[name='PSF_OpenWidthName'][value_ppwaerid='" + value_SelWaerId + "']").val("755");
                     
                     $("p[name='PSF_OpenSpecificationsspan'][value_selspecspan='" + value_SelWaerId + "']").hide();
@@ -1235,7 +1244,20 @@
                     });
                     selectElement.html(optionHtml); // 璧嬪�煎埌select锛屽畬鎴愭柊澧�
 
-
+                    $("p[name='PSF_Zhizhangshuliang'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                    $("p[name='PSF_Kailiaoguige'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                    $("p[name='PSF_Zhizhangshulianga'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                    $("p[name='PSF_Yinshuazhengshu'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                    $("p[name='PSF_Xiaohao'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                    $("p[name='PSF_Kuandu'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                    $("p[name='PSF_OpenSpecificationsspan'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                    $("p[name='PSF_OpenWidthspan'][value_openwidthspan='" + value_SelWaerId + "']").hide();
+                    $("input[name='PSF_PrintedCount'][value_ppwaerid='" + value_SelWaerId + "']").hide();
+                    $("input[name='PSF_PrintedPositive'][value_positiveid='" + value_SelWaerId + "']").hide();
+                    $("input[name='PSF_LastNum'][value_lastnumid='" + value_SelWaerId + "']").hide();
+                    $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").hide();
+                    $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").hide();
+                    $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").hide();
 
                    
                 }
@@ -1261,6 +1283,27 @@
                         optionHtml += `<option value="${item.value}">${item.text}</option>`;
                     });
                     selectElement.html(optionHtml); // 璧嬪�煎埌select锛屽畬鎴愭柊澧�
+
+                    $("p[name='PSF_Zhizhangshuliang'][value_selspecspan='" + value_SelWaerId + "']").show();
+                    $("p[name='PSF_Kailiaoguige'][value_selspecspan='" + value_SelWaerId + "']").show();
+                    $("p[name='PSF_Zhizhangshulianga'][value_selspecspan='" + value_SelWaerId + "']").show();
+                    $("p[name='PSF_Yinshuazhengshu'][value_selspecspan='" + value_SelWaerId + "']").show();
+                    $("p[name='PSF_Xiaohao'][value_selspecspan='" + value_SelWaerId + "']").show();
+                    $("p[name='PSF_Kuandu'][value_selspecspan='" + value_SelWaerId + "']").show();
+                    $("p[name='PSF_OpenSpecificationsspan'][value_selspecspan='" + value_SelWaerId + "']").show();
+                    $("p[name='PSF_OpenWidthspan'][value_openwidthspan='" + value_SelWaerId + "']").show();
+                    $("input[name='PSF_PrintedCount'][value_ppwaerid='" + value_SelWaerId + "']").show();
+                    $("input[name='PSF_PrintedPositive'][value_positiveid='" + value_SelWaerId + "']").show();
+                    $("input[name='PSF_LastNum'][value_lastnumid='" + value_SelWaerId + "']").show();
+                    $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").show();
+                    $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").show();
+                    $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").show();
+
+                    if ($(this).val().indexOf('榛戠櫧') >= 0) {
+                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").hide();
+                    }
+
+
                 }
                   
               });
@@ -1452,7 +1495,7 @@
                     else if ($(vv).val().indexOf('杞浆') >= 0) {
            
                         $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").hide();
-                        $(".xialap[value_ppwaerid='" + value_SelWaerId + "']").show();
+                        $(".xialap[value_ppwaerid='" + value_SelWaerId + "']").hide();
                        // $("input[name='PSF_OpenWidthName'][value_ppwaerid='" + value_SelWaerId + "']").val("755");
 
                         $("p[name='PSF_OpenSpecificationsspan'][value_selspecspan='" + value_SelWaerId + "']").hide();
@@ -1577,6 +1620,21 @@
 
                         selectElement.val(sssssss);
 
+                        $("p[name='PSF_Zhizhangshuliang'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                        $("p[name='PSF_Kailiaoguige'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                        $("p[name='PSF_Zhizhangshulianga'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                        $("p[name='PSF_Yinshuazhengshu'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                        $("p[name='PSF_Xiaohao'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                        $("p[name='PSF_Kuandu'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                        $("p[name='PSF_OpenSpecificationsspan'][value_selspecspan='" + value_SelWaerId + "']").hide();
+                        $("p[name='PSF_OpenWidthspan'][value_openwidthspan='" + value_SelWaerId + "']").hide();
+                        $("input[name='PSF_PrintedCount'][value_ppwaerid='" + value_SelWaerId + "']").hide();
+                        $("input[name='PSF_PrintedPositive'][value_positiveid='" + value_SelWaerId + "']").hide();
+                        $("input[name='PSF_LastNum'][value_lastnumid='" + value_SelWaerId + "']").hide();
+                        $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").hide();
+                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").hide();
+                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").hide();
+
                     }
                     else {
                         var selectElement = $("select[name='PSF_Typesetting'][value_ppwaerid='" + value_SelWaerId + "']")
@@ -1602,6 +1660,25 @@
                         selectElement.html(optionHtml); // 璧嬪�煎埌select锛屽畬鎴愭柊澧�
 
                         selectElement.val(sssssss);
+
+                        $("p[name='PSF_Zhizhangshuliang'][value_selspecspan='" + value_SelWaerId + "']").show();
+                        $("p[name='PSF_Kailiaoguige'][value_selspecspan='" + value_SelWaerId + "']").show();
+                        $("p[name='PSF_Zhizhangshulianga'][value_selspecspan='" + value_SelWaerId + "']").show();
+                        $("p[name='PSF_Yinshuazhengshu'][value_selspecspan='" + value_SelWaerId + "']").show();
+                        $("p[name='PSF_Xiaohao'][value_selspecspan='" + value_SelWaerId + "']").show();
+                        $("p[name='PSF_Kuandu'][value_selspecspan='" + value_SelWaerId + "']").show();
+                        $("p[name='PSF_OpenSpecificationsspan'][value_selspecspan='" + value_SelWaerId + "']").show();
+                        $("p[name='PSF_OpenWidthspan'][value_openwidthspan='" + value_SelWaerId + "']").show();
+                        $("input[name='PSF_PrintedCount'][value_ppwaerid='" + value_SelWaerId + "']").show();
+                        $("input[name='PSF_PrintedPositive'][value_positiveid='" + value_SelWaerId + "']").show();
+                        $("input[name='PSF_LastNum'][value_lastnumid='" + value_SelWaerId + "']").show();
+                        $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").show();
+                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").show();
+                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").show();
+
+                        if ($(this).val().indexOf('榛戠櫧') >= 0) {
+                            $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").hide();
+                        }
                     }
                     
 
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx.cs
index a7af205..9edfceb 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx.cs
@@ -578,6 +578,11 @@
                         {
                             m_EC_SpecialForums.PSF_OpenWidth = PSF_OpenWidthName[i].ToInt32();
                         }
+
+                        if(PSF_PressesDesk[i].IndexOf("杞浆") >= 0)
+                        {
+                            m_EC_SpecialForums.PSF_OpenWidth = 0;
+                        }
                     }
                     else
                     {
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/CorporateClientsDetail.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/business/CorporateClientsDetail.aspx
index 0a43cf0..f039712 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/CorporateClientsDetail.aspx
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/CorporateClientsDetail.aspx
@@ -161,28 +161,40 @@
                        
                 </HeaderTemplate>
                 <ItemTemplate>
-                    <tr>
-                        <td rowspan="6" style="width:10px;">
+                     <tr>
+                           <td rowspan="6" style="width:3%;">
                              <%# Container.ItemIndex + 1%>
                         </td>
-                         <td>
+                         <td style="width:15%;" >
+                           鍗颁欢鍚嶇О
+                        </td>
+                        <td colspan="5" style="width:82%;">
+                            <%#Eval("DocumentName")%>
+                        </td>
+                         </tr>
+                     
+
+                    <tr>
+                      
+
+                         <td style="width:15%;">
                             涓氬姟缁忓姙浜�
                         </td>
-                        <td>
+                        <td style="width:15%;">
                              <%#Eval("BusinessManagers")%>
                         </td>
-                         <td>
+                         <td style="width:15%;">
                             鎵嬫満
                         </td>
-                         <td>
+                         <td style="width:15%;">
                            
                             <%#Eval("ManagersMobile")%>
                                    
                         </td>
-                         <td>
+                         <td style="width:15%;">
                            寰俊
                         </td>
-                        <td>
+                        <td style="width:15%;">
                           
                                 <%#Eval("ManagersQQ")%></a>
                         </td>
@@ -195,15 +207,7 @@
                              <%#Eval("Xinge")%>
                         </td>
                          </tr>
-                     <tr>
-                         <td>
-                           鍗颁欢鍚嶇О
-                        </td>
-                        <td colspan="5">
-                            <%#Eval("DocumentName")%>
-                        </td>
-                         </tr>
-                      <tr>
+                    
                         
                          <td>
                             鍗颁欢鏁伴噺
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx
new file mode 100644
index 0000000..e0cfb81
--- /dev/null
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx
@@ -0,0 +1,175 @@
+锘�<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DeliverPlanWentiChuli.aspx.cs" Inherits="CY.WebForm.Pages.business.DeliverPlanWentiChuli" %>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head id="Head1" runat="server">
+    <title>璁㈠崟缂栬緫</title>
+    <uc:CMSHead ID="CMSHead1" runat="server" />
+    <!--鍓嶅彴椤甸潰start-->
+    <link rel="stylesheet" type="text/css" href="../../Styles/base.css" />
+    <link href="../../Styles/changes.css" rel="stylesheet" type="text/css" />
+    <link href="../../Styles/ParticularWQJ.css" rel="stylesheet" type="text/css" />
+    <!--鍓嶅彴椤甸潰end-->
+    <script type="text/javascript" language="javascript">
+        function ReBindClients() {
+            $.ajax({
+                url: "/Pages/business/OrderChuli.aspx",
+                type: "POST",
+                dataType: "html",
+                data: { Target: "ReBindClients"},
+                global: false,
+                cache: false,
+                async: false,
+                success: function (data) {
+                    $("#selBuyerId").html(data);
+                }
+            });
+        }
+        function custormerChange(sel) {
+           
+
+            CallServer({ Target: "GetCommunication", id: sel.value }, function (data, textStatus) {
+                var jobj = false;
+                try {
+                    jobj = eval('[' + data + ']')[0];
+                } catch (ex) {
+                    global.DealDataException(ex); return;
+                }
+                if (jobj) {
+                    document.getElementById('txtLianxiren').value = jobj.BusinessManagers;
+                    document.getElementById('txtDizhi').value = jobj.Province + jobj.City + jobj.County + jobj.DetailedAddress ;
+                    document.getElementById('txtDianhua').value = jobj.CompanyPhone;
+                    document.getElementById('txtCompanyName').value = jobj.CompanyName;
+                } else;
+            });
+        }
+         
+
+        
+
+        //涓篠elect鏂板杩囨护鍔熻兘
+        function SelectAddSearch() {
+            $("select[SelInputHtml='True']").each(function (i, v) {
+                $(this).unbind("blur");
+                var old = $(this).html();
+                var oldObject = $(this).clone();
+                var sign = "selectS" + i;
+                $(v).attr("sign", sign);
+
+                var inputClass = "input_" + sign;
+                var html = "<span style='margin-left:10px'>杩囨护锛�</span><input type='text' class='" + inputClass + "' style='width:80px;height:18px;line-height:18px;'/>";
+                $(v).after(html);
+                $("." + inputClass).blur(function () {
+                    var nowval = $(this).val().trim();
+                    var output = "";
+                    if (nowval == "" || nowval == null) {
+                        output = old;
+                    } else {
+                        output += "<option value=''>璇烽�夋嫨</option>";
+                        var valueArr = new Array();
+                        oldObject.find("option").each(function (ii, vv) {
+
+                            var value = $.trim($(vv).attr("value"));
+                            var text = $.trim($(vv).text());
+
+                            if (text.indexOf(nowval) >= 0)
+                                valueArr.push(value + "|||" + text);
+                        });
+                        for (var ss in valueArr) {
+                            var s = valueArr[ss];
+                            if (s.split("|||").length == 2) {
+                                var value1 = s.split("|||")[0];
+                                var text1 = s.split("|||")[1];
+                                output += "<option value='" + value1 + "'>" + text1 + "</option>";
+                            }
+                        }
+                    }
+                    $(v).html(output);
+                });
+            });
+        }
+
+        window.FastKeyDistinctived = true; //渚嬪蹇嵎閿�(涓嶄娇鐢ㄩ�氱敤蹇嵎閿�)
+        var keyDownHook = new KeyBehaviorHook('keydown');
+        keyDownHook.Regist(window.Keys.S, "ClickElement('btnSave')", window.WithKey.Ctrl); //Ctrl+s 淇濆瓨
+        keyDownHook.Regist(window.Keys.Enter, "ClickElement('btnSave')", window.WithKey.Ctrl); //Ctrl+Enter 淇濆瓨
+        keyDownHook.Regist(window.Keys.R, "ClickElement('btnReset')", window.WithKey.Ctrl); //Ctrl+R 閲嶇疆
+        keyDownHook.Regist(window.Keys.Q, "ClickElement('btnBackList')", window.WithKey.Ctrl); //Ctrl+Q 閫�鍑�(Quit)
+
+        $(function () {
+            SelectAddSearch();
+            keyDownHook.Binding();
+            global.SetReqMsg();
+             
+        });
+
+        
+
+         
+    </script>
+   
+</head>
+<body style='padding: 0; margin: 0;'>
+    <form id="form1" runat="server" style='padding: 0; margin: 0;' class='form2'>
+   
+    
+    <table class="table2" id="tbBasic">
+        <thead>
+            <tr>
+                <th colspan="8">
+                    鍩烘湰淇℃伅
+                </th>
+            </tr>
+        </thead>
+        <tr style=" height:1px;">
+                <td style="border:none;width: 100px;">
+                </td>
+                <td style="border:none; width:300px;">
+                </td>
+                
+                
+            </tr>
+      
+         <tr>
+               <td align="right">
+                澶勭悊浜猴細
+            </td>
+            <td align="left" >
+                 <span id="spnChuliren" runat="server" > </span>
+            </td>
+ </tr>
+        <tr>
+              <td align="right">
+                澶勭悊鏃堕棿锛�
+            </td>
+            <td align="left">
+               <span id="selChuliTime" runat="server" > </span>   
+            </td>
+           
+       
+         
+             </tr>
+         <tr>
+                <td class="contentLeft" colspan="2" style=" padding-left:300px;">
+                   
+                     
+
+                    
+
+              
+                </td>
+            </tr>
+          
+    </table>
+   
+     
+     
+    </form>
+    
+</body>
+<script type="text/javascript" language="javascript">
+    
+     
+  
+</script>
+</html>
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.cs
new file mode 100644
index 0000000..0ef860e
--- /dev/null
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.cs
@@ -0,0 +1,137 @@
+锘�/**  
+* OrderChuli.aspx.cs
+*
+* 鍔� 鑳斤細 璁㈠崟鍒楄〃
+* 绫� 鍚嶏細 OrderChuli
+*
+* Ver    鍙樻洿鏃ユ湡             璐熻矗浜�  鍙樻洿鍐呭
+* 鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�鈹�
+* V0.01  2013-5-8 13:55       鍚村磶鍧�    鍒濈増
+* V0.02  2013-5-8 15:47       鍚村磶鍧�    瀹炵幇涓嬫媺鏁版嵁缁戝畾涓庢暟鎹骇鑱�
+* V0.03  2013-5-8 18:00       鍚村磶鍧�    鍒濇瀹屾垚鏂板绾夸笅璁㈠崟(鏈皟璇�)
+* 
+*/
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using CY.BLL.Sys;
+using CY.BLL;
+using CY.Model;
+using CY.Infrastructure.Common;
+using CY.WebForm.Pages.common;
+using CY.BLL.EC;
+using CY.Model.Inquiry;
+
+namespace CY.WebForm.Pages.business
+{
+    public partial class DeliverPlanWentiChuli : BasePage
+    {
+        public int Orderid = 0;
+        public int printNum = 0;
+
+       
+        OA_DeliverPlanPaicheBLL oA_DeliverPlanBLL = null;
+      
+
+        //鍒濆鍖�
+        public DeliverPlanWentiChuli()
+        {
+
+          
+           
+            oA_DeliverPlanBLL = new OA_DeliverPlanPaicheBLL();
+           
+
+
+        }
+
+        /// <summary>
+        /// 椤甸潰鍔犺浇浜嬩欢
+        /// </summary>
+        /// <param name="sender"></param>
+        /// <param name="e"></param>
+        protected void Page_Load(object sender, EventArgs e)
+        {
+            try
+            {
+                switch (Request["Target"])
+                {
+                    
+                    
+                    default:
+                        Page_Load_Default();
+                        return;
+                }
+            }
+            catch (Exception ex)
+            {
+                PAGEHandleException(ex);
+                Response.Clear();
+                //Response.Write("-1");
+                Response.Write(ex.Message);
+            }
+            Response.End();
+        }
+
+
+        
+
+
+        /// <summary>
+        /// 榛樿鎵ц鏂规硶
+        /// </summary>
+        private void Page_Load_Default()
+        {
+
+          
+         
+            if (!IsPostBack && !IsCallback)
+            {
+
+               
+
+                var keyid = Request["keyid"].ToGuid2();
+                var oA_DeliverPlan = oA_DeliverPlanBLL.GetModelByKeyid(keyid, null, null);
+
+                if (oA_DeliverPlan != null)
+                {
+                    if (oA_DeliverPlan.Chulistatus != 1)
+                    {
+                        JavaScript.MessageBox("璁㈠崟杩樻湭澶勭悊", this, true, false);
+                        return;
+                    }
+
+                    this.spnChuliren.InnerHtml = oA_DeliverPlan.Chuliren;
+                    this.selChuliTime.InnerHtml = oA_DeliverPlan.ChuliTime.HasValue ? oA_DeliverPlan.ChuliTime.Value.ToString("yyyy-MM-dd") : "";
+                    
+                }
+
+
+                
+               
+              
+            }
+        }
+
+        
+        
+
+
+
+         
+         
+
+ 
+
+
+
+        
+
+       
+        
+      
+    }
+}
\ No newline at end of file
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.designer.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.designer.cs
new file mode 100644
index 0000000..7e9a76e
--- /dev/null
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiChuli.aspx.designer.cs
@@ -0,0 +1,62 @@
+锘�//------------------------------------------------------------------------------
+// <鑷姩鐢熸垚>
+//     姝や唬鐮佺敱宸ュ叿鐢熸垚銆�
+//
+//     瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉
+//     閲嶆柊鐢熸垚浠g爜锛屽垯鎵�鍋氭洿鏀瑰皢涓㈠け銆�
+// </鑷姩鐢熸垚>
+//------------------------------------------------------------------------------
+
+namespace CY.WebForm.Pages.business
+{
+
+
+    public partial class DeliverPlanWentiChuli
+    {
+
+        /// <summary>
+        /// Head1 鎺т欢銆�
+        /// </summary>
+        /// <remarks>
+        /// 鑷姩鐢熸垚鐨勫瓧娈点��
+        /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲��
+        /// </remarks>
+        protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
+
+        /// <summary>
+        /// CMSHead1 鎺т欢銆�
+        /// </summary>
+        /// <remarks>
+        /// 鑷姩鐢熸垚鐨勫瓧娈点��
+        /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲��
+        /// </remarks>
+        protected global::CY.WebForm.Pages.common.CMSHead CMSHead1;
+
+        /// <summary>
+        /// form1 鎺т欢銆�
+        /// </summary>
+        /// <remarks>
+        /// 鑷姩鐢熸垚鐨勫瓧娈点��
+        /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲��
+        /// </remarks>
+        protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+        /// <summary>
+        /// spnChuliren 鎺т欢銆�
+        /// </summary>
+        /// <remarks>
+        /// 鑷姩鐢熸垚鐨勫瓧娈点��
+        /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲��
+        /// </remarks>
+        protected global::System.Web.UI.HtmlControls.HtmlGenericControl spnChuliren;
+
+        /// <summary>
+        /// selChuliTime 鎺т欢銆�
+        /// </summary>
+        /// <remarks>
+        /// 鑷姩鐢熸垚鐨勫瓧娈点��
+        /// 鑻ヨ杩涜淇敼锛岃灏嗗瓧娈靛0鏄庝粠璁捐鍣ㄦ枃浠剁Щ鍒颁唬鐮侀殣钘忔枃浠躲��
+        /// </remarks>
+        protected global::System.Web.UI.HtmlControls.HtmlGenericControl selChuliTime;
+    }
+}
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiEdit.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiEdit.aspx.cs
index f5d2cc8..1b934e2 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiEdit.aspx.cs
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiEdit.aspx.cs
@@ -67,6 +67,9 @@
                     case "wanjie":
                         AcceptAll();
                         return;
+                    case "chuli":
+                        AcceptAll1();
+                        return;
                     case "ReBindClients":
                         Response.Write(ReLoadClients());
                         break;
@@ -150,6 +153,44 @@
 
 
         /// <summary>
+        /// 鎵归噺鍙楃悊璁㈠崟
+        /// </summary>
+        public void AcceptAll1()
+        {
+
+
+            var keyid = Request["keyid"].ToGuid2();
+
+            var oA_DeliverPlan = oA_DeliverPlanBLL.GetModelByKeyid(keyid, null, null);
+
+            if (oA_DeliverPlan != null)
+            {
+                if (oA_DeliverPlan.Chulistatus == 1)
+                {
+                    JavaScript.MessageBox("璁㈠崟宸茬粡澶勭悊", this, true, false);
+                    return;
+                }
+                oA_DeliverPlan.Chulistatus = 1;
+                oA_DeliverPlan.Chuliren = CurrentUser.ShortName;
+                oA_DeliverPlan.ChuliTime = DateTime.Now;
+                if (oA_DeliverPlanBLL.UpdateModel(oA_DeliverPlan))
+                {
+                    JavaScript.MessageBox("鎿嶄綔鎴愬姛", this, true, true);
+                    return;
+                }
+                else
+                {
+                    JavaScript.MessageBox("鎿嶄綔澶辫触", this, true, false);
+                    return;
+                }
+
+            }
+
+
+        }
+
+
+        /// <summary>
         /// 榛樿鎵ц鏂规硶
         /// </summary>
         private void Page_Load_Default()
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiList.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiList.aspx
index 4d7e123..55b3ba3 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiList.aspx
+++ b/CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanWentiList.aspx
@@ -46,8 +46,11 @@
         function Xiugai(keyid) {
             top.Dialog.open({ URL: "/Pages/business/DeliverPlanWentiEdit.aspx?keyid=" + keyid, Title: "杩借矗", Width: 900, Height: 750 });
         }
+        //鏌ョ湅澶勭悊
+        function ViewChuli(keyid) {
+            top.Dialog.open({ URL: "/Pages/business/DeliverPlanWentiChuli.aspx?keyid=" + keyid, Title: "鏌ョ湅澶勭悊", Width: 350, Height: 200 });
+        }
         
-       
         //閫佽揣瀹夋帓
         function outAfterWorks(Keyid, BuyerId, DeliveredTime) {
             top.Dialog.open({ URL: "/Pages/business/OrderProductionprogress.aspx?SellerOrderId=" + SellerOrderId + "&Keyid=" + Keyid + "&works=" + works, Title: works, Width: 300, Height: 300 });
@@ -184,6 +187,19 @@
 
            
         }
+
+        //宸ヤ綔鑰冭瘎
+        function chuli(Keyid) {
+
+            var msg = ('纭澶勭悊鍚�?');
+            top.Dialog.confirm(msg, function () {
+                top.Dialog.open({ URL: "/Pages/business/DeliverPlanWentiEdit.aspx?Target=chuli&&keyid=" + Keyid, Title: "闂澶勭悊", Width: 600, Height: 300 });
+            });
+
+
+
+        }
+        
         
 
 
@@ -463,7 +479,9 @@
                         
                        
                       
-                       
+                        <th width="60">
+                            鏄惁澶勭悊
+                        </th>
                          
                        <th width="60">
                             鏄惁瀹岀粨
@@ -515,7 +533,11 @@
                                 <td> 
                                     <%#Eval("Fakuan","{0:F2}")%> 
                                 </td>
-                             
+
+                                 <td>
+                                     <a href='javascript:void(0)' title='<%#Eval("ChulistatusName")%>' class='a_under' onclick='ViewChuli("<%#Eval("Keyid")%>")'><%#Eval("ChulistatusName")%></a>
+                                    
+                                </td>
                                 
                                  <td>
                                     <%#Eval("WanjiestatusName")%>
@@ -526,6 +548,8 @@
                                  
                                  <td style="text-align: center;">
 
+                                     <a href='javascript:void(0)' menu_member_case_id="case_Wentichuli" menu_member_case_name="闂澶勭悊"  title='鐐瑰嚮闂澶勭悊' class='a_under' onclick='chuli("<%#Eval("Keyid")%>")'> 闂澶勭悊  </a>   
+
                                        <a href='javascript:void(0)'  menu_member_case_id="case_Zhuize" menu_member_case_name="杩借矗"  title='鐐瑰嚮淇敼' class='a_under' onclick='Xiugai("<%#Eval("Keyid")%>","<%#Eval("Transferstatus")%>")'> 杩借矗  </a>    
 
 

--
Gitblit v1.9.1