From c2cf47d916bfeed9ad6f3bd8745c8397bfb3b93a Mon Sep 17 00:00:00 2001 From: duanluohua Date: Thu, 12 Apr 2018 10:06:12 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82=E5=8D=95No.139483?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../B3YunKen/SaleForecastUpdateList_/SaleForecastUpdateList.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BWP.B3_YunKen.Web/Pages/B3YunKen/SaleForecastUpdateList_/SaleForecastUpdateList.cs b/BWP.B3_YunKen.Web/Pages/B3YunKen/SaleForecastUpdateList_/SaleForecastUpdateList.cs index c1819de..4fbace3 100644 --- a/BWP.B3_YunKen.Web/Pages/B3YunKen/SaleForecastUpdateList_/SaleForecastUpdateList.cs +++ b/BWP.B3_YunKen.Web/Pages/B3YunKen/SaleForecastUpdateList_/SaleForecastUpdateList.cs @@ -70,12 +70,15 @@ namespace BWP.Web.Pages.B3YunKen.SaleForecastUpdateList_ { layoutManager.Add("AccountingUnit_ID", new SimpleLabel("会计单位"), _accInput = QueryCreator.DFChoiceBox(_dFInfo.Fields["AccountingUnit_ID"], B3FrameworksConsts.DataSources.授权会计单位全部), false); layoutManager.Add("Store_ID", new SimpleLabel("仓库"), _storeInput = QueryCreator.DFChoiceBox(_dFInfo.Fields["Store_ID"], B3FrameworksConsts.DataSources.授权仓库), false); + layoutManager.Add("DeliveryTime",new SimpleLabel("提货时间"),QueryCreator.DateRange(_dFInfo.Fields["DeliveryTime"],_queryContainer, "MinDeliveryTime", "MaxDeliveryTime")); + layoutManager.Add("Customer_ID", _customerInput = QueryCreator.DFChoiceBox(_dFInfo.Fields["Customer_ID"], B3SaleDataSources.用户配置客户)); layoutManager.Add("SaleKind_ID", _customerInput = QueryCreator.DFChoiceBox(_dFInfo.Fields["SaleKind_ID"], B3SaleDataSources.销售类型)); var config = new AutoLayoutConfig(); config.Add("Date"); + config.Add("DeliveryTime"); config.Add("AccountingUnit_ID"); config.Add("Employee_ID"); config.Add("Customer_ID");