diff --git a/SCP/SCP.csproj b/SCP/SCP.csproj
index 9e753fd..ba14cb9 100644
--- a/SCP/SCP.csproj
+++ b/SCP/SCP.csproj
@@ -2940,10 +2940,6 @@
-
-
-
-
@@ -4493,8 +4489,6 @@
-
-
@@ -4508,7 +4502,6 @@
-
@@ -4520,9 +4513,7 @@
-
-
@@ -5270,34 +5261,6 @@
SCP_PO_PLAN_DETAIL.aspx
-
- SCP_SQE.aspx
- ASPXCodeBehind
-
-
- SCP_SQE.aspx
-
-
- SCP_REJECT_LIST.aspx
- ASPXCodeBehind
-
-
- SCP_REJECT_LIST.aspx
-
-
- SCP_RETURN_CREATE.aspx
- ASPXCodeBehind
-
-
- SCP_RETURN_CREATE.aspx
-
-
- SCP_RETURN_MANAGER.aspx
- ASPXCodeBehind
-
-
- SCP_RETURN_MANAGER.aspx
-
SCP_BarChart.aspx
ASPXCodeBehind
@@ -5494,20 +5457,6 @@
SCP_QUALITY.aspx
-
- SCP_QUALITY_CREATE.aspx
- ASPXCodeBehind
-
-
- SCP_QUALITY_CREATE.aspx
-
-
- SCP_QUALITY_MANAGER.aspx
- ASPXCodeBehind
-
-
- SCP_QUALITY_MANAGER.aspx
-
SCP_RECEIVE_LIST.aspx
ASPXCodeBehind
@@ -5599,13 +5548,6 @@
SCP_UNPAID.aspx
-
- SCP_COMPARE.aspx
- ASPXCodeBehind
-
-
- SCP_COMPARE.aspx
-
SCP_INVOICE_VIEW.aspx
ASPXCodeBehind
@@ -5683,13 +5625,6 @@
SCP_RECEIVE_DETAIL_VIEW.aspx
-
- SCP_REJECT.aspx
- ASPXCodeBehind
-
-
- SCP_REJECT.aspx
-
SCP_RECEIVE.aspx
ASPXCodeBehind
@@ -5697,13 +5632,6 @@
SCP_RECEIVE.aspx
-
- SCP_REJECT_DETAIL.aspx
- ASPXCodeBehind
-
-
- SCP_REJECT_DETAIL.aspx
-
SCP_RECEIVE_DETAIL.aspx
ASPXCodeBehind
diff --git a/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx b/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx
deleted file mode 100644
index bab32a3..0000000
--- a/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx
+++ /dev/null
@@ -1,88 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_QUALITY_CREATE.aspx.cs" Inherits="SCP.Views.Quality.SCP_QUALITY_CREATE" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx.cs b/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx.cs
deleted file mode 100644
index 5c3a88a..0000000
--- a/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx.cs
+++ /dev/null
@@ -1,109 +0,0 @@
-using CK.SCP.Controller;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Utils;
-using FineUI;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace SCP.Views.Quality
-{
- public partial class SCP_QUALITY_CREATE : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- BindDetail();
- }
- }
- public void SearchV_TB_ASN_DETAILData(Action> p_action)
- {
- V_TB_ASN_DETAIL _entity = new V_TB_ASN_DETAIL();
- //_entity.AskBillNum = "";
- _entity.AsnBillNum =!string.IsNullOrEmpty(TXT_AsnBillNum.Text)? TXT_AsnBillNum.Text:"9999999";
- SCP_ASN_CONTROLLER.Get_V_TB_ASN_DETAIL_List(_entity, (_ret) => {
- if (_ret.State == ReturnStatus.Succeed)
- {
- p_action(_ret.Result);
- }
- });
- }
- ///
- /// 绑定明细
- ///
- public void BindDetail()
- {
- SearchV_TB_ASN_DETAILData((ret) => {
- Grid_V_TB_ASN_DETAIL.RecordCount = ret.Count();
- var list = SortAndPage(ret, Grid_V_TB_ASN_DETAIL);
- var ls = list.ToList();
- Grid_V_TB_ASN_DETAIL.DataSource = ls;
- Grid_V_TB_ASN_DETAIL.DataBind();
- });
- }
-
- protected void Grid_V_TB_ASN_DETAIL_PageIndexChange(object sender, FineUI.GridPageEventArgs e)
- {
- BindDetail();
- }
-
- protected void ddlGridPageSize_SelectedIndexChanged(object sender, EventArgs e)
- {
- BindDetail();
- }
-
- protected void btnRelease_Click(object sender, EventArgs e)
- {
- List _list = new List();
- Dictionary> modifiedDict = Grid_V_TB_ASN_DETAIL.GetModifiedDict();
- for (int i = 0, count = Grid_V_TB_ASN_DETAIL.Rows.Count; i < count; i++)
- {
- V_TB_ASN_DETAIL _entity = new V_TB_ASN_DETAIL();
- object[] rowDataKeys = Grid_V_TB_ASN_DETAIL.DataKeys[i];
- _entity.UID = ConvertHelper.To(rowDataKeys[0]);
- _entity.PoBillNum = rowDataKeys[1] as string;
- _entity.PoLine = ConvertHelper.To(rowDataKeys[2]);
- _entity.PartCode = rowDataKeys[3] as string;
- _entity.AsnBillNum = rowDataKeys[4] as string;
- _entity.Batch = rowDataKeys[5] as string;
- _entity.VendId= rowDataKeys[6] as string;
-
- if (modifiedDict.Keys.Contains(i))
- {
- var modifyValue = modifiedDict[i];
- var _FailQty = modifyValue.Keys.Contains("Failqty") ? modifyValue["Failqty"] : 0;
- var _FailReason = modifyValue.Keys.Contains("FailReason") ? modifyValue["FailReason"] : string.Empty;
- _entity.FailQty = ConvertHelper.To(_FailQty);
- _entity.FailReason =_FailReason.ToString();
- _list.Add(_entity);
-
- }
-
-
- }
- var ret = SCP_QUALITY_CONTROLLER.Save_ASN_TO_QUALITY(_list, CurrentUser.ChineseName);
- if (ret.Result == true)
- {
- Alert.Show("添加不合格品信息成功!");
- }
- //var ret = SCP_ASK_CONTROLLER.Save_ASK_TO_ASN(_model, _askDetaillist, TXT_PlateNumber.Text, CurrentUser.ChineseName, CurrentUser.CellPhone);
- //if (ret.State == ReturnStatus.Succeed)
- //{
- // Alert.Show("生成发货单成功!");
- // GetV_TB_POData();
- // BindDetail();
- //}
- }
-
- protected void btnQuery_Click(object sender, EventArgs e)
- {
- BindDetail();
- }
-
-
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx.designer.cs b/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx.designer.cs
deleted file mode 100644
index fc36ab9..0000000
--- a/SCP/Views/Quality/SCP_QUALITY_CREATE.aspx.designer.cs
+++ /dev/null
@@ -1,105 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.Views.Quality {
-
-
- public partial class SCP_QUALITY_CREATE {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// Toolbar2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Toolbar Toolbar2;
-
- ///
- /// btnRelease 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnRelease;
-
- ///
- /// TXT_AsnBillNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_AsnBillNum;
-
- ///
- /// btnQuery 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnQuery;
-
- ///
- /// Grid_V_TB_ASN_DETAIL 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_V_TB_ASN_DETAIL;
-
- ///
- /// NB_PublishNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.NumberBox NB_PublishNum;
-
- ///
- /// fail 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList fail;
-
- ///
- /// highlightRows 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.HiddenField highlightRows;
- }
-}
diff --git a/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx b/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx
deleted file mode 100644
index 54f4b81..0000000
--- a/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx
+++ /dev/null
@@ -1,109 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_QUALITY_MANAGER.aspx.cs" Inherits="SCP.Views.Quality.SCP_QUALITY_MANAGER" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx.cs b/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx.cs
deleted file mode 100644
index 2a18904..0000000
--- a/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx.cs
+++ /dev/null
@@ -1,143 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using CK.SCP.Models.AppBoxEntity;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Controller;
-using FineUI;
-using SCP.Code;
-
-namespace SCP.Views.Quality
-{
- public partial class SCP_QUALITY_MANAGER : PageBase
- {
-
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!Page.IsPostBack)
- {
- Bind();
- BindVender(TXT_Vendid);
- }
- }
- public void Bind()
- {
- Search((result) => {
- Grid_TB_QUALITY.RecordCount = result.Count();
- var list = SortAndPage(result, Grid_TB_QUALITY);
- Grid_TB_QUALITY.DataSource = list;
- Grid_TB_QUALITY.DataBind();
- });
- }
- public void Search(Action> p_action)
- {
- V_TB_QUALITY _entity = new V_TB_QUALITY();
- _entity.Pobillnum = TXT_PoBillNum.Text;
- _entity.Barcode = TXT_PageCode.Text;
- _entity.Partcode = TXT_PartCode.Text;
- _entity.By1 = TXT_AsnBill.Text;
- _entity.Vendid = TXT_Vendid.SelectedValue;
- _entity.Batch = TXT_Batch.Text;
- _entity.IsDeleted = false;
- _entity.UserInAddress = CurrentUser.FactoryList;
- _entity.UserInVendIds = CurrentUser.VenderList;
- SCP_QUALITY_CONTROLLER.Get_TB_QUALITY_List(_entity, (_ret) => {
- if (_ret.State == ReturnStatus.Succeed)
- {
- p_action(_ret.Result);
- }
- });
- }
-
- protected void btnOutput_Click(object sender, EventArgs e)
- {
- Search((rs) => {
- Dictionary cellheader = new Dictionary();
- cellheader.Add("Type_Desc", "检验类型");
- cellheader.Add("Barcode", "箱码");
- cellheader.Add("Pobillnum", "订单编号");
- cellheader.Add("Poline", "订单行号");
- cellheader.Add("Partcode", "零件编码");
- cellheader.Add("Batch", "发货批次");
- cellheader.Add("Failqty", "不合格数");
- cellheader.Add("Failreason", "不合格原因");
- cellheader.Add("Vendbatch", "供应商批次");
- cellheader.Add("Billtime", "检查日期");
- cellheader.Add("PartDesc1", "零件名1");
- cellheader.Add("PartDesc2", "零件名2");
- cellheader.Add("ProjectId", "项目名称");
- cellheader.Add("Qlevel", "质检等级");
- cellheader.Add("VendName", "供应商名称");
- string url = EntityListToExcel2003(cellheader, rs.ToList(), "质量不合格零件导出");
- });
- }
-
- protected void btnQuery_Click(object sender, EventArgs e)
- {
- Bind();
- }
-
- protected void ddlGridPageSize_SelectedIndexChanged(object sender, EventArgs e)
- {
- Bind();
- }
-
-
-
-
-
- protected void btnSave_Click(object sender, EventArgs e)
- {
-
- }
-
- protected void btnDelete_Click(object sender, EventArgs e)
- {
- if (Grid_TB_QUALITY.SelectedRowIndexArray.Count() == 0)
- {
- PageContext.RegisterStartupScript(Alert.GetShowInTopReference("没有选择数据!"));
- return;
- }
- List _ls = new List();
- for (int i = 0, count = Grid_TB_QUALITY.Rows.Count; i < count; i++)
- {
- if (Grid_TB_QUALITY.SelectedRowIndexArray.Contains(i))
- {
- object[] rowDataKeys = Grid_TB_QUALITY.DataKeys[i];
- var _entity = new TB_QUALITY();
- _entity.UID = long.Parse(rowDataKeys[0].ToString()) ;
- _ls.Add(_entity);
- }
- }
-
- var _ret = SCP_QUALITY_CONTROLLER.Del_TB_QUALITY(_ls);
- if (_ret.State == ReturnStatus.Succeed)
- {
- Bind();
- Alert.Show("删除不合格评审成功!");
- }
- }
-
-
-
- protected void btnNew_Click(object sender, EventArgs e)
- {
- PageContext.RegisterStartupScript(Window1.GetShowReference("../Quality/SCP_QUALITY_CREATE.aspx"));
- }
-
- protected void Window1_Close(object sender, WindowCloseEventArgs e)
- {
- Bind();
- }
-
- protected void btnSQE_Click(object sender, EventArgs e)
- {
- PageContext.RegisterStartupScript(Window1.GetShowReference("../Quality/SCP_SQE.aspx"));
- }
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx.designer.cs b/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx.designer.cs
deleted file mode 100644
index 22dfe9c..0000000
--- a/SCP/Views/Quality/SCP_QUALITY_MANAGER.aspx.designer.cs
+++ /dev/null
@@ -1,249 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.Views.Quality {
-
-
- public partial class SCP_QUALITY_MANAGER {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// pmg1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.PageManager pmg1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// Toolbar2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Toolbar Toolbar2;
-
- ///
- /// btnNew 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnNew;
-
- ///
- /// btnOutput 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnOutput;
-
- ///
- /// btnDelete 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnDelete;
-
- ///
- /// btnSQE 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnSQE;
-
- ///
- /// FormRow1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow1;
-
- ///
- /// TXT_Code 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_Code;
-
- ///
- /// TXT_AsnBill 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_AsnBill;
-
- ///
- /// TXT_PoBillNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_PoBillNum;
-
- ///
- /// TXT_PageCode 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_PageCode;
-
- ///
- /// FormRow_1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow_1;
-
- ///
- /// TXT_Vendid 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList TXT_Vendid;
-
- ///
- /// TXT_PartCode 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_PartCode;
-
- ///
- /// TXT_Batch 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_Batch;
-
- ///
- /// FormRow_3 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow_3;
-
- ///
- /// btnQuery 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnQuery;
-
- ///
- /// Grid_TB_QUALITY 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_TB_QUALITY;
-
- ///
- /// ToolbarSeparator2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarSeparator ToolbarSeparator2;
-
- ///
- /// ToolbarText1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarText ToolbarText1;
-
- ///
- /// ddlGridPageSize 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList ddlGridPageSize;
-
- ///
- /// Window1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window Window1;
-
- ///
- /// WindowUpload 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window WindowUpload;
-
- ///
- /// TXT_State 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.HiddenField TXT_State;
- }
-}
diff --git a/SCP/Views/Quality/SCP_REJECT_LIST.aspx b/SCP/Views/Quality/SCP_REJECT_LIST.aspx
deleted file mode 100644
index 0467e7c..0000000
--- a/SCP/Views/Quality/SCP_REJECT_LIST.aspx
+++ /dev/null
@@ -1,149 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_REJECT_LIST.aspx.cs" Inherits="SCP.Quality.RejectList" %>
-
-<%@ Import Namespace="CK.SCP.Utils" %>
-<%@ Import Namespace="CK.SCP.Models.Enums" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/Quality/SCP_REJECT_LIST.aspx.cs b/SCP/Views/Quality/SCP_REJECT_LIST.aspx.cs
deleted file mode 100644
index efa7ebc..0000000
--- a/SCP/Views/Quality/SCP_REJECT_LIST.aspx.cs
+++ /dev/null
@@ -1,333 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using CK.SCP.Models.AppBoxEntity;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Controller;
-using FineUI;
-using SCP.Code;
-using System.Drawing;
-using CK.SCP.Utils;
-using CK.SCP.Models.Enums;
-
-namespace SCP.Quality
-{
- public partial class RejectList : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- IsRoleRight();
-
- if (!IsPostBack)
- {
-
- LoadData();
-
- }
- }
- public void IsRoleRight()
- {
- if (!CurrentUser.RoleList.Contains("供应商"))
- {
- btnSave.Hidden = true;
- }
- //else
- //{
- // if (CurrentUser.RoleList.Contains("采购人员"))
- // {
- // Alert.Show("当前用户角色不能操作该模块!");
- // return;
- // }
- //}
- //if (CurrentUser.VenderList == null || CurrentUser.VenderList.Count == 0)
- //{
- // Alert.Show("当前用户未选择地点!");
- // return;
- //}
- }
-
-
-
- public void LoadData()
- {
- // 每页记录数
- Grid_V_TB_RECEIVE_LIST.PageSize = 100;
- ddlGridPageSize.SelectedValue = ConfigHelper.PageSize.ToString();
- BindData();
- }
-
- private void SearchData(Action> p_action)
- {
- V_TB_RECEIVE_LIST _ls = new V_TB_RECEIVE_LIST();
- _ls.PoBillNum = TXT_BillNo.Text;
- _ls.VendName = TXT_VendName.Text;
- _ls.UserInVendIds = CurrentUser.VenderList;
- _ls.AsnBillNum = TXT_ASNBill.Text;
- _ls.PartCode = TXT_PartCode.Text;
- _ls.VendId = TXT_VendId.Text;
- _ls.ProjectId = TXT_ProjectId.Text;
- if (DP_StartDate.SelectedDate != null)
- {
- _ls.BeginTime = DP_StartDate.SelectedDate;
- }
- if (Date_EndDate.SelectedDate != null)
- {
- _ls.ShipTime = Date_EndDate.SelectedDate;
- }
- _ls.BillType_DESC = "退货单";
- if (CurrentUser.FactoryList != null && CurrentUser.FactoryList.Count > 0)
- {
- _ls.Site = CurrentUser.FactoryList[0];
- }
- _ls.State = 1;
- if (CurrentUser.VenderList != null && CurrentUser.VenderList.Count > 0)
- {
- var _venderId = CurrentUser.VenderList.FirstOrDefault();
- //if (!string.IsNullOrEmpty(_ls.Site) && !string.IsNullOrEmpty(_venderId))
- //{
- // var _vender= SCP_TB_VENDER_CONTROLLER.GetVender(_venderId, _ls.Site);
- // if (_vender.Tax != null)
- // {
- // lbTaxRate.Text = _vender.Tax.ToString();
- // }
- // else
- // {
- // lbTaxRate.Text = "0";
- // }
- //}
- }
- SCP_RECIVECE_CONTROLLER.Get_V_TB_RECEIVE_LIST_List(_ls, (ret) =>
- {
- if (ret.State == ReturnStatus.Succeed)
- {
- p_action(ret.Result);
- }
- });
- }
- public void BindData()
- {
- SearchData(ret =>
- {
- Grid_V_TB_RECEIVE_LIST.RecordCount = ret.Count();
- ret = SortAndPage(ret, Grid_V_TB_RECEIVE_LIST);
- //List temp = SCP_CONTRACT_CONTROLLER.GET_CONTRACT_PRICE_LIST(ret.ToList());
- //SCP_RECIVECE_CONTROLLER.Get_V_TB_RECEIVE_LIST_PRICE(CurrentUser.VenderList[0], temp, (rs) =>
- //{
-
- // if (rs.State == ReturnStatus.Succeed)
- // {
- // temp.ForEach(itm =>
- // {
- // var _entity = rs.Result.ToList().Where(p => p.PartCode == itm.PartCode && itm.CreateTime >= p.StartTime && itm.CreateTime <= p.EndTime).FirstOrDefault();
- // if (_entity != null)
- // {
- // itm.Price = itm.Price > 0 ? itm.Price : _entity.Amt;
-
- // }
- // });
- // }
- //});
-
- Grid_V_TB_RECEIVE_LIST.DataSource = ret.ToList();
- Grid_V_TB_RECEIVE_LIST.DataBind();
- });
- // 排列和数据库分页
- }
- protected void Grid1_OnPageIndexChange(object sender, GridPageEventArgs e)
- {
- Grid_V_TB_RECEIVE_LIST.PageIndex = e.NewPageIndex;
- BindData();
- }
-
- protected void ddlGridPageSize_OnSelectedIndexChanged(object sender, EventArgs e)
- {
- Grid_V_TB_RECEIVE_LIST.PageSize = Convert.ToInt32(ddlGridPageSize.SelectedValue);
- BindData();
- }
- //生成发票
- protected void btnCreate_OnClick(object sender, EventArgs e)
- {
-
-
- }
-
- protected void Grid_V_TB_RECEIVE_LIST_PageIndexChange(object sender, GridPageEventArgs e)
- {
- BindData();
- }
-
- //导出
- protected void btnOutput_OnClick(object sender, EventArgs e)
- {
- V_TB_RECEIVE_LIST _ls = new V_TB_RECEIVE_LIST();
- _ls.PoBillNum = TXT_BillNo.Text;
- _ls.VendName = TXT_VendName.Text;
- _ls.UserInVendIds = CurrentUser.VenderList;
- _ls.AsnBillNum = TXT_ASNBill.Text;
- _ls.PartCode = TXT_PartCode.Text;
- _ls.VendId = TXT_VendId.Text;
- _ls.ProjectId = TXT_ProjectId.Text;
- if (DP_StartDate.SelectedDate != null)
- {
- _ls.BeginTime = DP_StartDate.SelectedDate;
- }
- if (Date_EndDate.SelectedDate != null)
- {
- _ls.ShipTime = Date_EndDate.SelectedDate;
- }
- _ls.BillType_DESC = "退货单";
- if (CurrentUser.FactoryList != null && CurrentUser.FactoryList.Count > 0)
- {
- _ls.Site = CurrentUser.FactoryList[0];
- }
- _ls.State = 1;
- if (CurrentUser.VenderList != null && CurrentUser.VenderList.Count > 0)
- {
- var _venderId = CurrentUser.VenderList.FirstOrDefault();
- if (!string.IsNullOrEmpty(_ls.Site) && !string.IsNullOrEmpty(_venderId))
- {
- var _vender = SCP_TB_VENDER_CONTROLLER.GetVender(_venderId, _ls.Site);
- if (_vender.Tax != null)
- {
- lbTaxRate.Text = _vender.Tax.ToString();
- }
- else
- {
- lbTaxRate.Text = "0";
- }
- }
- }
-
- SCP_RECIVECE_CONTROLLER.Get_V_TB_RECEIVE_LIST_List(_ls, (ret) =>
- {
- if (ret.State == ReturnStatus.Succeed)
- {
- var _lst = ret.Result.ToList();
- SCP_RECIVECE_CONTROLLER.Get_V_TB_RECEIVE_LIST_PRICE(CurrentUser.VenderList[0], _lst, (rs) =>
- {
-
- if (rs.State == ReturnStatus.Succeed)
- {
- _lst.ForEach(itm =>
- {
- var _entityList = rs.Result.ToList().Where(p => p.PartCode == itm.PartCode && itm.CreateTime >= p.StartTime && itm.CreateTime <= p.EndTime).ToList();
- if (_entityList.Count > 0)
- {
- var _max = _entityList.Select(p => p.UID).Max();
- var _entity = _entityList.Where(p => p.UID == _max).FirstOrDefault();
- if (itm.ModType == (int)BillModType.Contract)
- {
- if (CurrentUser.FactoryList.FirstOrDefault() == "CNS")
- {
- itm.Price = _entity.Amt;
- }
- else
- {
- itm.Price = itm.Price > 0 ? itm.Price : _entity.Amt;
- }
- }
- else
- {
- itm.Price = itm.Price > 0 ? itm.Price : _entity.Amt;
- }
- }
- });
- }
- });
- Dictionary cellheader = new Dictionary
- {
- { "ProjectId", "项目编号" },
- { "BillType_DESC", "单据类型" },
- { "RecvBillNum", "单据编号" },
- { "AsnBillNum", "发货单号" },
- { "VendName", "供应商" },
- { "VendId", "供应商编码" },
- { "PoBillNum", "订单号" },
- { "PoLine", "订单行" },
- { "PartCode", "零件号" },
- { "PartDesc1", "零件名称" },
- { "LocUnit", "单位" },
- { "Currency", "币种" },
- { "CreateTime", "创建时间" }
-
- };
-
- string url = EntityListToExcel2003(cellheader,_lst , "审核明细");
- }
- });
- }
-
- //快速查找
- protected void btnSearch_Click(object sender, EventArgs e)
- {
-
- }
- protected void btnShow_Click(object sender, EventArgs e)
- {
- gp1.Hidden = false;
- }
- protected void BtnClose_Click(object sender, EventArgs e)
- {
- gp1.Hidden = true;
- }
- protected void BtnSearch_Click(object sender, EventArgs e)
- {
- BindData();
- }
-
- protected void Grid_V_TB_RECEIVE_LIST_RowDataBound(object sender, GridRowEventArgs e)
- {
- //System.Web.UI.WebControls.Label _label= (System.Web.UI.WebControls.Label)Grid_V_TB_RECEIVE_LIST.Rows[e.RowIndex].FindControl("Qty1");
- //if (!string.IsNullOrEmpty(_label.Text))
- //{
- // if (decimal.Parse(_label.Text) < 0)
- // {
- // _label.ForeColor = Color.Red;
- // }
- //}
- }
-
- protected void btnCanIn_Click(object sender, EventArgs e)
- {
-
- }
-
- protected void btnALL_Click(object sender, EventArgs e)
- {
-
- }
-
- protected void btnSave_Click(object sender, EventArgs e)
- {
- List _list = new List();
- for (int i = 0; i < Grid_V_TB_RECEIVE_LIST.Rows.Count; i++)
- {
-
- V_TB_RECEIVE_DETAIL _entity = new V_TB_RECEIVE_DETAIL();
- GridRow row = Grid_V_TB_RECEIVE_LIST.Rows[i];
- object[] rowDataKeys = Grid_V_TB_RECEIVE_LIST.DataKeys[i];
- _entity.UID = ConvertHelper.To(rowDataKeys[0]);
- Dictionary> modifiedDict = Grid_V_TB_RECEIVE_LIST.GetModifiedDict();
- System.Web.UI.WebControls.TextBox txtQualityal = (System.Web.UI.WebControls.TextBox)row.FindControl("Remark");
- System.Web.UI.WebControls.TextBox txtAsnBillNum = (System.Web.UI.WebControls.TextBox)row.FindControl("AsnBillNum");
- _entity.AsnBillNum = txtAsnBillNum.Text;
- _entity.Remark = txtQualityal.Text;
- _list.Add(_entity);
-
- }
-
-
- var ret = SCP_RECIVECE_CONTROLLER.Save_Reject(_list);
- if (ret.State == ReturnStatus.Succeed)
- {
- LoadData();
- Alert.Show("保存成功");
- }
- }
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/Quality/SCP_REJECT_LIST.aspx.designer.cs b/SCP/Views/Quality/SCP_REJECT_LIST.aspx.designer.cs
deleted file mode 100644
index ce1ba82..0000000
--- a/SCP/Views/Quality/SCP_REJECT_LIST.aspx.designer.cs
+++ /dev/null
@@ -1,303 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.Quality {
-
-
- public partial class RejectList {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// Toolbar2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Toolbar Toolbar2;
-
- ///
- /// Button1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button Button1;
-
- ///
- /// Button2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button Button2;
-
- ///
- /// btnCanIn 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnCanIn;
-
- ///
- /// btnSave 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnSave;
-
- ///
- /// btnShow 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnShow;
-
- ///
- /// tb_RecvBillNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox tb_RecvBillNum;
-
- ///
- /// btn_Search 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btn_Search;
-
- ///
- /// lbTaxRate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox lbTaxRate;
-
- ///
- /// gp1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.GroupPanel gp1;
-
- ///
- /// FormRow_1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow_1;
-
- ///
- /// TXT_BillNo 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_BillNo;
-
- ///
- /// TXT_ASNBill 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_ASNBill;
-
- ///
- /// TXT_VendName 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_VendName;
-
- ///
- /// TXT_VendId 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_VendId;
-
- ///
- /// FormRow_2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow_2;
-
- ///
- /// TXT_ProjectId 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_ProjectId;
-
- ///
- /// TXT_PartCode 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_PartCode;
-
- ///
- /// DP_StartDate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DatePicker DP_StartDate;
-
- ///
- /// Date_EndDate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DatePicker Date_EndDate;
-
- ///
- /// FormRow_3 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow_3;
-
- ///
- /// BtnClose 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button BtnClose;
-
- ///
- /// BtnSearch 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button BtnSearch;
-
- ///
- /// Grid_V_TB_RECEIVE_LIST 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_V_TB_RECEIVE_LIST;
-
- ///
- /// ToolbarSeparator1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarSeparator ToolbarSeparator1;
-
- ///
- /// ToolbarText1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarText ToolbarText1;
-
- ///
- /// ddlGridPageSize 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList ddlGridPageSize;
-
- ///
- /// Remark 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.WebControls.TextBox Remark;
-
- ///
- /// AsnBillNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.WebControls.TextBox AsnBillNum;
-
- ///
- /// Window1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window Window1;
- }
-}
diff --git a/SCP/Views/Quality/SCP_RETURN_CREATE.aspx b/SCP/Views/Quality/SCP_RETURN_CREATE.aspx
deleted file mode 100644
index 6e9cbf5..0000000
--- a/SCP/Views/Quality/SCP_RETURN_CREATE.aspx
+++ /dev/null
@@ -1,81 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_RETURN_CREATE.aspx.cs" Inherits="SCP.Views.Quality.SCP_RETURN_CREATE" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/Quality/SCP_RETURN_CREATE.aspx.cs b/SCP/Views/Quality/SCP_RETURN_CREATE.aspx.cs
deleted file mode 100644
index 7753d6b..0000000
--- a/SCP/Views/Quality/SCP_RETURN_CREATE.aspx.cs
+++ /dev/null
@@ -1,103 +0,0 @@
-using CK.SCP.Controller;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Utils;
-using FineUI;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace SCP.Views.Quality
-{
- public partial class SCP_RETURN_CREATE : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- BindDetail();
- }
- }
- public void SearchV_TB_ASN_DETAILData(Action> p_action)
- {
- V_TB_ASN_DETAIL _entity = new V_TB_ASN_DETAIL();
- //_entity.AskBillNum = "";
- _entity.AsnBillNum =!string.IsNullOrEmpty(TXT_AsnBillNum.Text)? TXT_AsnBillNum.Text:"9999999";
- SCP_ASN_CONTROLLER.Get_V_TB_ASN_DETAIL_List(_entity, (_ret) => {
- if (_ret.State == ReturnStatus.Succeed)
- {
- p_action(_ret.Result);
- }
- });
- }
- ///
- /// 绑定明细
- ///
- public void BindDetail()
- {
- SearchV_TB_ASN_DETAILData((ret) => {
- Grid_V_TB_ASN_DETAIL.RecordCount = ret.Count();
- var list = SortAndPage(ret, Grid_V_TB_ASN_DETAIL);
- var ls = list.ToList();
- Grid_V_TB_ASN_DETAIL.DataSource = ls;
- Grid_V_TB_ASN_DETAIL.DataBind();
- });
- }
-
- protected void Grid_V_TB_ASN_DETAIL_PageIndexChange(object sender, FineUI.GridPageEventArgs e)
- {
- BindDetail();
- }
-
- protected void ddlGridPageSize_SelectedIndexChanged(object sender, EventArgs e)
- {
- BindDetail();
- }
-
- protected void btnRelease_Click(object sender, EventArgs e)
- {
- List _list = new List();
- Dictionary> modifiedDict = Grid_V_TB_ASN_DETAIL.GetModifiedDict();
- for (int i = 0, count = Grid_V_TB_ASN_DETAIL.Rows.Count; i < count; i++)
- {
- V_TB_ASN_DETAIL _entity = new V_TB_ASN_DETAIL();
- object[] rowDataKeys = Grid_V_TB_ASN_DETAIL.DataKeys[i];
- _entity.UID = ConvertHelper.To(rowDataKeys[0]);
- _entity.PoBillNum = rowDataKeys[1] as string;
- _entity.PoLine = ConvertHelper.To(rowDataKeys[2]);
- _entity.PartCode = rowDataKeys[3] as string;
- _entity.AsnBillNum = rowDataKeys[4] as string;
- _entity.Batch = rowDataKeys[5] as string;
- _entity.VendId= rowDataKeys[6] as string;
- if (modifiedDict.Keys.Contains(i))
- {
- var modifyValue = modifiedDict[i];
- var _RejectQty= modifyValue.Keys.Contains("RejectQty") ? modifyValue["RejectQty"] : 0;
- _entity.RejectQty = ConvertHelper.To(_RejectQty);
- _list.Add(_entity);
- }
- }
- var ret = SCP_QUALITY_CONTROLLER.Save_ASN_TO_RETURN(_list, CurrentUser.ChineseName);
- if (ret.Result == true)
- {
- Alert.Show("添加退货信息成功!");
- }
- //var ret = SCP_ASK_CONTROLLER.Save_ASK_TO_ASN(_model, _askDetaillist, TXT_PlateNumber.Text, CurrentUser.ChineseName, CurrentUser.CellPhone);
- //if (ret.State == ReturnStatus.Succeed)
- //{
- // Alert.Show("生成发货单成功!");
- // GetV_TB_POData();
- // BindDetail();
- //}
- }
-
- protected void btnQuery_Click(object sender, EventArgs e)
- {
- BindDetail();
- }
-
-
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/Quality/SCP_RETURN_CREATE.aspx.designer.cs b/SCP/Views/Quality/SCP_RETURN_CREATE.aspx.designer.cs
deleted file mode 100644
index 57c31ca..0000000
--- a/SCP/Views/Quality/SCP_RETURN_CREATE.aspx.designer.cs
+++ /dev/null
@@ -1,105 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.Views.Quality {
-
-
- public partial class SCP_RETURN_CREATE {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// Toolbar2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Toolbar Toolbar2;
-
- ///
- /// btnRelease 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnRelease;
-
- ///
- /// TXT_AsnBillNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_AsnBillNum;
-
- ///
- /// btnQuery 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnQuery;
-
- ///
- /// Grid_V_TB_ASN_DETAIL 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_V_TB_ASN_DETAIL;
-
- ///
- /// NB_PublishNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.NumberBox NB_PublishNum;
-
- ///
- /// AsnBill 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox AsnBill;
-
- ///
- /// highlightRows 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.HiddenField highlightRows;
- }
-}
diff --git a/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx b/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx
deleted file mode 100644
index b6a4520..0000000
--- a/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx
+++ /dev/null
@@ -1,115 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_RETURN_MANAGER.aspx.cs" Inherits="SCP.Views.Quality.SCP_RETURN_MANAGER" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx.cs b/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx.cs
deleted file mode 100644
index def3a6a..0000000
--- a/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx.cs
+++ /dev/null
@@ -1,138 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Web;
-using System.Web.Security;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using CK.SCP.Models.AppBoxEntity;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Controller;
-using FineUI;
-using SCP.Code;
-
-namespace SCP.Views.Quality
-{
- public partial class SCP_RETURN_MANAGER : PageBase
- {
-
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!Page.IsPostBack)
- {
- Bind();
- BindVender(TXT_Vendid);
- }
- }
- public void Bind()
- {
- Search((result) => {
- Grid_TB_RETURN.RecordCount = result.Count();
- var list = SortAndPage(result, Grid_TB_RETURN);
- Grid_TB_RETURN.DataSource = list;
- Grid_TB_RETURN.DataBind();
- });
- }
- public void Search(Action> p_action)
- {
- V_TB_RETURN _entity = new V_TB_RETURN();
- _entity.Pobillnum = TXT_PoBillNum.Text;
- _entity.Barcode = TXT_PageCode.Text;
- _entity.Partcode = TXT_PartCode.Text;
- _entity.By1 = TXT_AsnBill.Text;
- _entity.Vendid = TXT_Vendid.SelectedValue;
- _entity.Batch = TXT_Batch.Text;
- _entity.IsDeleted = false;
- _entity.UserInAddress = CurrentUser.FactoryList;
- _entity.UserInVendIds = CurrentUser.VenderList;
- SCP_QUALITY_CONTROLLER.Get_TB_RETURN_List(_entity, (_ret) => {
- if (_ret.State == ReturnStatus.Succeed)
- {
- p_action(_ret.Result);
- }
- });
- }
-
- protected void btnOutput_Click(object sender, EventArgs e)
- {
- Search((rs) => {
- Dictionary cellheader = new Dictionary();
- cellheader.Add("Type_Desc", "检验类型");
- cellheader.Add("Barcode", "箱码");
- cellheader.Add("Pobillnum", "订单编号");
- cellheader.Add("Poline", "订单行号");
- cellheader.Add("Partcode", "零件编码");
- cellheader.Add("Batch", "发货批次");
- cellheader.Add("Failqty", "不合格数");
- cellheader.Add("Failreason", "不合格原因");
- cellheader.Add("Vendbatch", "供应商批次");
- cellheader.Add("Billtime", "检查日期");
- cellheader.Add("PartDesc1", "零件名1");
- cellheader.Add("PartDesc2", "零件名2");
- cellheader.Add("ProjectId", "项目名称");
- cellheader.Add("Qlevel", "质检等级");
- cellheader.Add("VendName", "供应商名称");
- string url = EntityListToExcel2003(cellheader, rs.ToList(), "退货数量导出");
- });
- }
-
- protected void btnQuery_Click(object sender, EventArgs e)
- {
- Bind();
- }
-
- protected void ddlGridPageSize_SelectedIndexChanged(object sender, EventArgs e)
- {
- Bind();
- }
-
-
-
-
-
- protected void btnSave_Click(object sender, EventArgs e)
- {
-
- }
-
- protected void btnDelete_Click(object sender, EventArgs e)
- {
- if (Grid_TB_RETURN.SelectedRowIndexArray.Count() == 0)
- {
- PageContext.RegisterStartupScript(Alert.GetShowInTopReference("没有选择数据!"));
- return;
- }
- List _ls = new List();
- for (int i = 0, count = Grid_TB_RETURN.Rows.Count; i < count; i++)
- {
- if (Grid_TB_RETURN.SelectedRowIndexArray.Contains(i))
- {
- object[] rowDataKeys = Grid_TB_RETURN.DataKeys[i];
- var _entity = new TB_RETURN();
- _entity.UID = long.Parse(rowDataKeys[0].ToString()) ;
- _ls.Add(_entity);
- }
- }
-
- var _ret = SCP_QUALITY_CONTROLLER.Del_TB_RETURN(_ls);
- if (_ret.State == ReturnStatus.Succeed)
- {
- Bind();
- Alert.Show("删除退货数量成功!");
- }
- }
-
-
-
- protected void btnNew_Click(object sender, EventArgs e)
- {
- PageContext.RegisterStartupScript(Window1.GetShowReference("../Quality/SCP_RETURN_CREATE.aspx"));
- }
-
- protected void Window1_Close(object sender, WindowCloseEventArgs e)
- {
- Bind();
- }
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx.designer.cs b/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx.designer.cs
deleted file mode 100644
index f7a2d34..0000000
--- a/SCP/Views/Quality/SCP_RETURN_MANAGER.aspx.designer.cs
+++ /dev/null
@@ -1,240 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.Views.Quality {
-
-
- public partial class SCP_RETURN_MANAGER {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// pmg1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.PageManager pmg1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// Toolbar2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Toolbar Toolbar2;
-
- ///
- /// btnNew 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnNew;
-
- ///
- /// btnOutput 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnOutput;
-
- ///
- /// btnDelete 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnDelete;
-
- ///
- /// FormRow1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow1;
-
- ///
- /// TXT_Code 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_Code;
-
- ///
- /// TXT_AsnBill 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_AsnBill;
-
- ///
- /// TXT_PoBillNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_PoBillNum;
-
- ///
- /// TXT_PageCode 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_PageCode;
-
- ///
- /// FormRow_1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow_1;
-
- ///
- /// TXT_Vendid 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList TXT_Vendid;
-
- ///
- /// TXT_PartCode 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_PartCode;
-
- ///
- /// TXT_Batch 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox TXT_Batch;
-
- ///
- /// FormRow_3 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.FormRow FormRow_3;
-
- ///
- /// btnQuery 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnQuery;
-
- ///
- /// Grid_TB_RETURN 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_TB_RETURN;
-
- ///
- /// ToolbarSeparator2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarSeparator ToolbarSeparator2;
-
- ///
- /// ToolbarText1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarText ToolbarText1;
-
- ///
- /// ddlGridPageSize 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList ddlGridPageSize;
-
- ///
- /// Window1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window Window1;
-
- ///
- /// WindowUpload 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window WindowUpload;
-
- ///
- /// TXT_State 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.HiddenField TXT_State;
- }
-}
diff --git a/SCP/Views/Quality/SCP_SQE.aspx b/SCP/Views/Quality/SCP_SQE.aspx
deleted file mode 100644
index 05e61bb..0000000
--- a/SCP/Views/Quality/SCP_SQE.aspx
+++ /dev/null
@@ -1,58 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_SQE.aspx.cs" Inherits="SCP.Views.Quality.SCP_SQE" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/Quality/SCP_SQE.aspx.cs b/SCP/Views/Quality/SCP_SQE.aspx.cs
deleted file mode 100644
index 9c0700a..0000000
--- a/SCP/Views/Quality/SCP_SQE.aspx.cs
+++ /dev/null
@@ -1,96 +0,0 @@
-using CK.SCP.Controller;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Utils;
-using FineUI;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace SCP.Views.Quality
-{
- public partial class SCP_SQE : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- BindDetail();
- BindVender(ddl_Vender);
- }
- }
- public void SearchData(Action> p_action)
- {
- V_TB_ASN_DETAIL _entity = new V_TB_ASN_DETAIL();
- if (!string.IsNullOrEmpty(DP_StartDate.Text))
- {
- _entity.SQE_BeginTime = DP_StartDate.SelectedDate.Value.ToShortDateString();
- }
- if (!string.IsNullOrEmpty(Date_EndDate.Text))
- {
- _entity.SQE_EndTime = Date_EndDate.SelectedDate.Value.ToShortDateString();
- }
- _entity.VendId = ddl_Vender.SelectedValue;
- SCP_REPORT_CONTROLLER.Get_SQE(_entity, (_ret) => {
- if (_ret.State == ReturnStatus.Succeed)
- {
- p_action(_ret.Result);
- }
- });
- }
- ///
- /// 绑定明细
- ///
- public void BindDetail()
- {
- SearchData((ret) => {
- Grid_SQE.RecordCount = ret.Count();
- var list = SortAndPage(ret, Grid_SQE);
- var ls = list.ToList();
- Grid_SQE.DataSource = ls;
- Grid_SQE.DataBind();
- });
- }
-
- protected void Grid_V_TB_ASN_DETAIL_PageIndexChange(object sender, FineUI.GridPageEventArgs e)
- {
- BindDetail();
- }
-
- protected void ddlGridPageSize_SelectedIndexChanged(object sender, EventArgs e)
- {
- BindDetail();
- }
- protected void btnQuery_Click(object sender, EventArgs e)
- {
- BindDetail();
- }
-
- protected void Grid_SQE_PageIndexChange(object sender, GridPageEventArgs e)
- {
- BindDetail();
- }
-
- protected void btnExcel_Click(object sender, EventArgs e)
- {
-
- SearchData((ret) => {
-
- Dictionary cellheader = new Dictionary(){
- {"VendId" , "供应商编码" },
- {"VendName" , "供应商名称" },
- { "FailQty" , "不合格数量" },
- { "RecQty" , "收货数量" },
-
- };
- string url = EntityListToExcel2003(cellheader, ret.ToList(), "SQE导出");
-
- });
-
-
-
- }
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/Quality/SCP_SQE.aspx.designer.cs b/SCP/Views/Quality/SCP_SQE.aspx.designer.cs
deleted file mode 100644
index 7e7fd6b..0000000
--- a/SCP/Views/Quality/SCP_SQE.aspx.designer.cs
+++ /dev/null
@@ -1,96 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.Views.Quality {
-
-
- public partial class SCP_SQE {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// ddl_Vender 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList ddl_Vender;
-
- ///
- /// DP_StartDate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DatePicker DP_StartDate;
-
- ///
- /// Date_EndDate 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DatePicker Date_EndDate;
-
- ///
- /// btnQuery 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnQuery;
-
- ///
- /// btnExcel 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnExcel;
-
- ///
- /// Grid_SQE 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_SQE;
-
- ///
- /// highlightRows 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.HiddenField highlightRows;
- }
-}
diff --git a/SCP/Views/WarehouseData/SCP_COMPARE.aspx b/SCP/Views/WarehouseData/SCP_COMPARE.aspx
deleted file mode 100644
index 8d2b554..0000000
--- a/SCP/Views/WarehouseData/SCP_COMPARE.aspx
+++ /dev/null
@@ -1,107 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_COMPARE.aspx.cs" Inherits="SCP.Views.WarehouseData.SCP_COMPARE" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/WarehouseData/SCP_COMPARE.aspx.cs b/SCP/Views/WarehouseData/SCP_COMPARE.aspx.cs
deleted file mode 100644
index d3d87c1..0000000
--- a/SCP/Views/WarehouseData/SCP_COMPARE.aspx.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Data;
-using System.Linq;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-namespace SCP.Views.WarehouseData
-{
- public partial class SCP_COMPARE : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
-
- }
-
- protected void Grid_V_TB_PO_DETAIL_RowDataBound(object sender, FineUI.GridRowEventArgs e)
- {
- DataRowView row = e.DataItem as DataRowView;
- if (row != null)
- {
- // row["PlanQty"]
-
- // row["ReceivedQty"]
-
- // row["RejectQty"]
- int entranceYear = Convert.ToInt32(row["EntranceYear"]);
-
- if (entranceYear >= 2006)
- {
- highlightRows.Text += e.RowIndex.ToString() + ",";
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/WarehouseData/SCP_COMPARE.aspx.designer.cs b/SCP/Views/WarehouseData/SCP_COMPARE.aspx.designer.cs
deleted file mode 100644
index 3ab6759..0000000
--- a/SCP/Views/WarehouseData/SCP_COMPARE.aspx.designer.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.Views.WarehouseData {
-
-
- public partial class SCP_COMPARE {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// Grid_V_TB_PO_DETAIL 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_V_TB_PO_DETAIL;
-
- ///
- /// ToolbarSeparator1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarSeparator ToolbarSeparator1;
-
- ///
- /// ToolbarText1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarText ToolbarText1;
-
- ///
- /// ddlGridPageSize 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList ddlGridPageSize;
-
- ///
- /// highlightRows 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.HiddenField highlightRows;
- }
-}
diff --git a/SCP/Views/WarehouseData/SCP_REJECT.aspx b/SCP/Views/WarehouseData/SCP_REJECT.aspx
deleted file mode 100644
index 897b600..0000000
--- a/SCP/Views/WarehouseData/SCP_REJECT.aspx
+++ /dev/null
@@ -1,136 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_REJECT.aspx.cs" Inherits="SCP.WarehouseData.SCP_REJECT" %>
-
-<%@ Import Namespace="CK.SCP.Models.Enums" %>
-<%@ Import Namespace="CK.SCP.Utils" %>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/WarehouseData/SCP_REJECT.aspx.cs b/SCP/Views/WarehouseData/SCP_REJECT.aspx.cs
deleted file mode 100644
index 89a60ff..0000000
--- a/SCP/Views/WarehouseData/SCP_REJECT.aspx.cs
+++ /dev/null
@@ -1,198 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Data.Entity.Migrations;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using CK.SCP.Models.Enums;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Utils;
-using CK.SCP.Controller;
-using FineUI;
-
-namespace SCP.WarehouseData
-{
- public partial class SCP_REJECT : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- LoadData();
- }
- }
-
- public void LoadData()
- {
- Grid_V_TB_REJECT.PageSize = ConfigHelper.PageSize;
- ddlGridPageSize.SelectedValue = ConfigHelper.PageSize.ToString();
- BindData();
- }
-
- public void BindData()
- {
- var _entity = new V_TB_REJECT();
- _entity.RjctBillNum = txtReceiveBill.Text;
- if (!string.IsNullOrEmpty(ddl.SelectedValue))
- {
- _entity.State = Convert.ToInt32(ddl.SelectedValue);
- }
- _entity.PoBillNum = txtPO.Text;
- _entity.AsnBillNum = AsnBillNum.Text;
- _entity.OperName = OperName.Text;
-
- SCP_REJECT_CONTROLLER.Get_V_TB_REJECT_List(_entity, (ret) =>
- {
- if (ret.State == ReturnStatus.Succeed)
- {
- Grid_V_TB_REJECT.RecordCount = ret.Result.Count();
- var _list = SortAndPage(ret.Result, Grid_V_TB_REJECT);
- Grid_V_TB_REJECT.DataSource = _list;
- Grid_V_TB_REJECT.DataBind();
- }
- });
-
- }
- protected void ddlGridPageSize_OnSelectedIndexChanged(object sender, EventArgs e)
- {
- Grid_V_TB_REJECT.PageSize = Convert.ToInt32(ddlGridPageSize.SelectedValue);
- BindData();
- }
- protected void Grid1_OnRowDoubleClick(object sender, GridRowClickEventArgs e)
- {
- string ID = GetSelectedDataKey(Grid_V_TB_REJECT, 1);
- string url = String.Format("../WarehouseData/SCP_REJECT_DETAIL.aspx?ID={0}", ID);
- PageContext.RegisterStartupScript(Window1.GetShowReference(url));
- }
-
- //明细
- protected void btnDetail_OnClick(object sender, EventArgs e)
- {
- string roleID = GetSelectedDataKey(Grid_V_TB_REJECT, 1);
- string url = String.Format("../WarehouseData/SCP_REJECT_DETAIL.aspx?ID={0}", roleID);
- PageContext.RegisterStartupScript(Window1.GetShowReference(url));
- }
- //查询
- protected void BtnSearch_OnClick(object sender, EventArgs e)
- {
- BindData();
- }
-
- //显示面板
- protected void btnShow_OnClick(object sender, EventArgs e)
- {
- gp1.Hidden = false;
- }
- //关闭面板
- protected void OnClick(object sender, EventArgs e)
- {
- gp1.Hidden = true;
- }
- //审核通过
- protected void btnCheck_OnClick(object sender, EventArgs e)
- {
- List listids = GetSelectedDataKeyIDs(Grid_V_TB_REJECT);
- if (listids.Count == 0)
- {
- PageContext.RegisterStartupScript(Alert.GetShowInParentReference("请勾选要审核的单据"));
- return;
- }
-
- var _ls = new List();
- int[] selections = Grid_V_TB_REJECT.SelectedRowIndexArray;
- for (int i = 0, count = Grid_V_TB_REJECT.Rows.Count; i < count; i++)
- {
- if (selections.Contains(i))
- {
- object[] rowDataKeys = Grid_V_TB_REJECT.DataKeys[i];
- _ls.Add(rowDataKeys[1] as string);
- }
- }
- var ret = SCP_REJECT_CONTROLLER.Save_TB_REJECT_STATE(_ls, RejectState.Check);
- PageContext.RegisterStartupScript(Alert.GetShowInParentReference("审核成功"));
- BindData();
- }
-
- protected void Grid1_OnPageIndexChange(object sender, GridPageEventArgs e)
- {
- Grid_V_TB_REJECT.PageIndex = e.NewPageIndex;
- BindData();
- }
- //导出
- protected void btnOutput_OnClick(object sender, EventArgs e)
- {
- //string billnum = GetQueryValue("ID");
-
- //IQueryable q = SCPDB.V_ReceiveDetail.Where(p => p.BillNum == billnum);
-
- //// 排列和数据库分页
- //var list = SortAndPage(q, Grid_V_TB_REJECT).ToList();
-
- //// 2.设置单元格抬头
- //// key:实体对象属性名称,可通过反射获取值
- //// value:Excel列的名称
- //Dictionary cellheader = new Dictionary {
- // { "BillNum", "状态" },
- // { "AsnBillNum", "单据类型" },
- // { "VendName", "供应商" },
- // { "BillNum", "收货单号" },
- // { "PoBillNum", "订单号" },
- // { "AsnBillNum", "发货单号" },
- // { "ReceiveTime", "收货时间" },
- // { "DeliveryAddress", "收货地点" },
- // { "OperName", "审核员" },
- // { "Remark", "备注" },
- //};
-
- //string url = EntityListToExcel2003(cellheader, list, "收货审核明细");
- var _entity = new V_TB_RECEIVE();
- _entity.RecvBillNum = txtReceiveBill.Text;
- if (!string.IsNullOrEmpty(ddl.SelectedValue))
- {
- _entity.State = Convert.ToInt32(ddl.SelectedValue);
- }
- _entity.PoBillNum = txtPO.Text;
- _entity.AsnBillNum = AsnBillNum.Text;
- _entity.OperName = OperName.Text;
- SCP_RECIVECE_CONTROLLER.Get_V_TB_RECEIVE_List(_entity, (ret) =>
- {
- if (ret.State == ReturnStatus.Succeed)
- {
- Dictionary cellheader = new Dictionary
- {
- { "State", "状态" },
- //{ "AsnBillNum", "单据类型" },
- { "VendName", "供应商" },
- { "RjctBillNum", "退货单号" },
- { "PoBillNum", "订单号" },
- { "AsnBillNum", "发货单号" },
- { "ShipTime", "发货时间" },
- { "Site_Desc", "发货地点" },
- { "OperName", "审核员" },
- { "Remark", "备注" },
- };
-
- string url = EntityListToExcel2003(cellheader, ret.Result.ToList(), "退货审核明细");
- }
- });
- }
-
- protected void Grid_V_TB_REJECT_RowDataBound(object sender, GridRowEventArgs e)
- {
- if (e.Row.RowIndex != -1)//.RowType == DataControlRowType.DataRow)
- {
- if (e.Row.Values != null && e.Row.Values[0] != null && e.Row.Values[0].ToString() == "0")
- {
- e.Row.Values[0] = "已退货";
- }
-
- if (e.Row.Values != null && e.Row.Values[0] != null && e.Row.Values[0].ToString() == "1")
- {
- e.Row.Values[0] = "审核通过";
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/WarehouseData/SCP_REJECT.aspx.designer.cs b/SCP/Views/WarehouseData/SCP_REJECT.aspx.designer.cs
deleted file mode 100644
index c84d706..0000000
--- a/SCP/Views/WarehouseData/SCP_REJECT.aspx.designer.cs
+++ /dev/null
@@ -1,213 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.WarehouseData {
-
-
- public partial class SCP_REJECT {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// Toolbar2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Toolbar Toolbar2;
-
- ///
- /// Button3 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button Button3;
-
- ///
- /// btnCheck 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnCheck;
-
- ///
- /// btnOutput 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnOutput;
-
- ///
- /// btnDetail 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnDetail;
-
- ///
- /// btnShow 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnShow;
-
- ///
- /// gp1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.GroupPanel gp1;
-
- ///
- /// ddl 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList ddl;
-
- ///
- /// txtReceiveBill 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtReceiveBill;
-
- ///
- /// txtSupplier 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtSupplier;
-
- ///
- /// txtPO 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtPO;
-
- ///
- /// AsnBillNum 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox AsnBillNum;
-
- ///
- /// OperName 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox OperName;
-
- ///
- /// BtnSearch 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button BtnSearch;
-
- ///
- /// Grid_V_TB_REJECT 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_V_TB_REJECT;
-
- ///
- /// ToolbarSeparator1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarSeparator ToolbarSeparator1;
-
- ///
- /// ToolbarText1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.ToolbarText ToolbarText1;
-
- ///
- /// ddlGridPageSize 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.DropDownList ddlGridPageSize;
-
- ///
- /// Window1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window Window1;
-
- ///
- /// WindowUpload 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window WindowUpload;
- }
-}
diff --git a/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx b/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx
deleted file mode 100644
index 1f78ad0..0000000
--- a/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx
+++ /dev/null
@@ -1,102 +0,0 @@
-<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SCP_REJECT_DETAIL.aspx.cs" Inherits="SCP.WarehouseData.SCP_REJECT_DETAIL" %>
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx.cs b/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx.cs
deleted file mode 100644
index 8b0daf0..0000000
--- a/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx.cs
+++ /dev/null
@@ -1,115 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Web;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using CK.SCP.Models.Enums;
-using CK.SCP.Models.ScpEntity;
-using CK.SCP.Utils;
-using CK.SCP.Controller;
-using FineUI;
-
-
-namespace SCP.WarehouseData
-{
- public partial class SCP_REJECT_DETAIL : PageBase
- {
-
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- LoadData();
- BindData();
- }
- }
-
- public void LoadData()
- {
- var _receive = new V_TB_REJECT();
- _receive.RjctBillNum = GetQueryValue("ID");
-
- SCP_REJECT_CONTROLLER.Get_V_TB_REJECT_List(_receive, (ret) => {
- if (ret.State == ReturnStatus.Succeed)
- {
- var _rec = ret.Result.FirstOrDefault();
- txtState.Text = _rec.State_DESC;
- txtBillNo.Text = _rec.RjctBillNum;
- txtReceiveTime.Text = Convert.ToDateTime(_rec.ShipTime).ToString("yyyy-MM-dd");
- txtShipBillNo.Text = _rec.AsnBillNum;
- txtPlanBillNo.Text = _rec.PoBillNum;
- txtUserName.Text = _rec.OperName;
- txtSupplierName.Text = _rec.VendName;
- txtMemo.Text = _rec.Remark;
- }
-
- });
- }
-
- public void BindData()
- {
- var _receive = new V_TB_REJECT_DETAIL();
- _receive.RjctBillNum = GetQueryValue("ID");
- SCP_REJECT_CONTROLLER.Get_V_TB_REJECT_DETAIL_List(_receive, (ret) =>
- {
- if (ret.State == ReturnStatus.Succeed)
- {
-
- Grid_V_TB_REJECT_DETAIL.RecordCount = ret.Result.Count();
- var _ls = SortAndPage(ret.Result, Grid_V_TB_REJECT_DETAIL);
-
- Grid_V_TB_REJECT_DETAIL.DataSource = _ls;
- Grid_V_TB_REJECT_DETAIL.DataBind();
- }
- });
- }
- protected void btnCheck_OnClick(object sender, EventArgs e)
- {
- //try
- //{
- // string id = GetQueryValue("ID");
- // _Model = ReceiveDetailController.GetlistByBillNum(id);
- // bool flag = ReceiveDetailController.UpdateReceive(_Model);
- // if (flag)
- // PageContext.Refresh();
- //}
- //catch (Exception ex)
- //{
- // Alert.ShowInTop(ex.Message);
- //}
- }
- //导出
- protected void btnOutput_OnClick(object sender, EventArgs e)
- {
- var _receive = new V_TB_REJECT_DETAIL();
- _receive.RjctBillNum = GetQueryValue("ID");
- SCP_REJECT_CONTROLLER.Get_V_TB_REJECT_DETAIL_List(_receive, (ret) =>
- {
- if (ret.State == ReturnStatus.Succeed)
- {
-
- Dictionary cellheader = new Dictionary {
- { "RjctBillNum", "退货单号" },
- { "AsnBillNum", "发货单号" },
- { "PoBillNum", "订单号" },
- { "PoLine", "订单行" },
- { "PartCode", "零件号" },
- { "PartDesc1", "零件名称" },
- { "Unit", "单位" },
- { "Qty", "退货数量" },
- //{ "ReceivedQty", "已开票数量" },
- { "ShipTime", "收货时间" },
- { "Remark", "备注" },
- };
-
- string url = EntityListToExcel2003(cellheader, ret.Result.ToList(), "收货审核明细");
-
- }
- });
-
-
- }
- }
-}
\ No newline at end of file
diff --git a/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx.designer.cs b/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx.designer.cs
deleted file mode 100644
index a80b513..0000000
--- a/SCP/Views/WarehouseData/SCP_REJECT_DETAIL.aspx.designer.cs
+++ /dev/null
@@ -1,195 +0,0 @@
-//------------------------------------------------------------------------------
-// <自动生成>
-// 此代码由工具生成。
-//
-// 对此文件的更改可能导致不正确的行为,如果
-// 重新生成代码,则所做更改将丢失。
-// 自动生成>
-//------------------------------------------------------------------------------
-
-namespace SCP.WarehouseData {
-
-
- public partial class SCP_REJECT_DETAIL {
-
- ///
- /// form1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
- ///
- /// Panel1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Panel Panel1;
-
- ///
- /// Toolbar2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Toolbar Toolbar2;
-
- ///
- /// Button1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button Button1;
-
- ///
- /// btnCheck 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnCheck;
-
- ///
- /// txtBillNo 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtBillNo;
-
- ///
- /// txtShipBillNo 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtShipBillNo;
-
- ///
- /// txtPlanBillNo 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtPlanBillNo;
-
- ///
- /// txtState 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtState;
-
- ///
- /// txtSupplierName 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtSupplierName;
-
- ///
- /// txtType 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtType;
-
- ///
- /// txtDeliveryAddress 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtDeliveryAddress;
-
- ///
- /// txtReceiveTime 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtReceiveTime;
-
- ///
- /// txtUserName 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtUserName;
-
- ///
- /// txtMemo 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.TextBox txtMemo;
-
- ///
- /// TextBox2 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Label TextBox2;
-
- ///
- /// btnOutput 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Button btnOutput;
-
- ///
- /// Grid_V_TB_REJECT_DETAIL 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Grid Grid_V_TB_REJECT_DETAIL;
-
- ///
- /// Window1 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window Window1;
-
- ///
- /// WindowUpload 控件。
- ///
- ///
- /// 自动生成的字段。
- /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
- ///
- protected global::FineUI.Window WindowUpload;
- }
-}