diff --git a/TradeManageNew/HT_CustomList.aspx b/TradeManageNew/HT_CustomList.aspx new file mode 100644 index 0000000..662d9e6 --- /dev/null +++ b/TradeManageNew/HT_CustomList.aspx @@ -0,0 +1,400 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HT_CustomList.aspx.cs" Inherits="TradeManageNew.HT_CustomList" %> + + + + + + + 客户合同 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户合同日期-inname0 未结清 1已结清
+ +
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户
合同日期
htcode
佣金
rmbprice
usdprice
内际金额
海运费
汇率
利率
totalrmbprice
totalusdprice
已付多少
累计利息多少
inname
indate
0 未结清 1已结清
+ + +
+
+
+ + + + + + + diff --git a/TradeManageNew/HT_CustomList.aspx.cs b/TradeManageNew/HT_CustomList.aspx.cs new file mode 100644 index 0000000..55924b5 --- /dev/null +++ b/TradeManageNew/HT_CustomList.aspx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace TradeManageNew +{ + public partial class HT_CustomList : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/TradeManageNew/HT_CustomList.aspx.designer.cs b/TradeManageNew/HT_CustomList.aspx.designer.cs new file mode 100644 index 0000000..842b536 --- /dev/null +++ b/TradeManageNew/HT_CustomList.aspx.designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能导致不正确的行为,如果 +// 重新生成代码,则所做更改将丢失。 +// +//------------------------------------------------------------------------------ + +namespace TradeManageNew +{ + + + public partial class HT_CustomList + { + + /// + /// Head1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::System.Web.UI.HtmlControls.HtmlHead Head1; + } +} diff --git a/TradeManageNew/SysManageServiceNew.asmx.cs b/TradeManageNew/SysManageServiceNew.asmx.cs index cf8967f..ac3514d 100644 --- a/TradeManageNew/SysManageServiceNew.asmx.cs +++ b/TradeManageNew/SysManageServiceNew.asmx.cs @@ -18114,6 +18114,91 @@ where a.storeid in (6,9,11) and a.OrderGoodsId=0 and a.KCNum>0 " + tj + " gr } #endregion + #region HT_CustomFee页 + #region 保存 + [WebMethod(EnableSession = true)] + public int Save_CustomFee(HT_CustomFee Model) + { + PagesNew.Login(this.Session); + return DataNew.Save_CustomFee(Model); + } + #endregion + #region 删除 + [WebMethod(EnableSession = true)] + public bool Delete_CustomFee(int id) + { + PagesNew.Login(this.Session); + DataNew.Delete_CustomFee(id); + return true; + } + #endregion + #region 返回Model + [WebMethod(EnableSession = true)] + public HT_CustomFee GetModel_CustomFee(int id) + { + PagesNew.Login(this.Session); + var Model = DataNew.GetModel_CustomFee(id); + return Model; + } + #endregion + + + + + + + + + #region 分页查询 + [WebMethod(EnableSession = true)] + public JsonModel> GetListCustomFee(string cs, int PageIndex, int PageSize) + { + PagesNew.Login(this.Session); + string where = CustomIO.Base64StringToString(cs); + if (where != "") where = "where " + where.Substring(4); + var resultModel = new JsonModel>(); + int RowCount = 0; + resultModel.DataSource = DataNew.GetListCustomFee(where, PageIndex, PageSize, "", out RowCount); + resultModel.RowCount = RowCount; + return resultModel; + } + #endregion + #region 保存 + [WebMethod(EnableSession = true)] + public int Save_CustomFeeDetail(HT_CustomFeeDetail Model) + { + PagesNew.Login(this.Session); + return DataNew.Save_CustomFeeDetail(Model); + } + #endregion + #region 删除 + [WebMethod(EnableSession = true)] + public bool Delete_CustomFeeDetail(int id) + { + PagesNew.Login(this.Session); + DataNew.Delete_CustomFeeDetail(id); + return true; + } + #endregion + #region 返回Model + [WebMethod(EnableSession = true)] + public HT_CustomFeeDetail GetModel_CustomFeeDetail(int id) + { + PagesNew.Login(this.Session); + var Model = DataNew.GetModel_CustomFeeDetail(id); + return Model; + } + #endregion + #region 普通查询列表 + [WebMethod(EnableSession = true)] + public List GetListCustomFeeDetail(int feeid) + { + PagesNew.Login(this.Session); + var ListModel = DataNew.GetListCustomFeeDetail(feeid); + return ListModel; + } + #endregion + #endregion } } diff --git a/TradeManageNew/TradeManageNew.csproj b/TradeManageNew/TradeManageNew.csproj index d2f9fe4..5bd818e 100644 --- a/TradeManageNew/TradeManageNew.csproj +++ b/TradeManageNew/TradeManageNew.csproj @@ -1405,6 +1405,7 @@ + @@ -2723,6 +2724,13 @@ gp_service.asmx Component + + HT_CustomList.aspx + ASPXCodeBehind + + + HT_CustomList.aspx + HuoWuServiceNew.asmx Component