using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
using System.Web.UI;
|
using System.Web.UI.WebControls;
|
using CY.BLL;
|
using CY.BLL.Sys;
|
using CY.Model;
|
using CY.Infrastructure.Query;
|
using CY.Infrastructure.Common;
|
using CY.BLL.EC;
|
using CY.Model.Inquiry;
|
|
namespace CY.WebForm.Pages.business
|
{
|
//吴辉
|
//行政管理
|
public partial class DeliverWorkBookPrint : BasePage
|
{
|
CoreCmsPlanOrderBLL bll_CoreCmsPlanOrderBLL = null;
|
CoreCmsPlanOrderItemBLL bll_CoreCmsPlanOrderItemBLL = null;
|
EC_OrderPrintParameterBLL _eC_OrderPrintParameterBLL = null;
|
public string orderid = "";
|
|
//初始化
|
public DeliverWorkBookPrint()
|
{
|
bll_CoreCmsPlanOrderBLL = new CoreCmsPlanOrderBLL();
|
bll_CoreCmsPlanOrderItemBLL = new CoreCmsPlanOrderItemBLL();
|
_eC_OrderPrintParameterBLL = new EC_OrderPrintParameterBLL();
|
}
|
|
//页面加载
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
|
if (!IsPostBack)
|
{
|
|
|
BindList();
|
}
|
|
}
|
|
//绑定数据
|
private void BindList()
|
{
|
string orderIdStr = Request["orderId"];
|
this.hideOrderId.Value = orderIdStr;
|
orderid = orderIdStr;
|
|
var coreCmsPlanOrders = bll_CoreCmsPlanOrderBLL.GetModelByorderid(orderIdStr.ToInt32().Value);
|
|
var pianqu = this.txtpianqu.Value.Trim();
|
if (!string.IsNullOrEmpty(pianqu))
|
{
|
coreCmsPlanOrders = coreCmsPlanOrders.Where(x => x.pianqu.Contains(pianqu));
|
}
|
var xuexiao = this.txtxuexiao.Value.Trim();
|
if (!string.IsNullOrEmpty(xuexiao))
|
{
|
coreCmsPlanOrders = coreCmsPlanOrders.Where(x => x.shipAddress.Contains(xuexiao));
|
}
|
|
|
|
|
|
|
this.RepClientList.DataSource = coreCmsPlanOrders;
|
this.RepClientList.DataBind();
|
|
}
|
|
|
//查询事件
|
protected void btn_Search_Click(object src, EventArgs e)
|
{
|
BindList();
|
}
|
}
|
}
|