From d547aa3d2642b6e69500ce963dd0811fc184ddd8 Mon Sep 17 00:00:00 2001 From: yibo <361071264@qq.com> Date: Sat, 31 Mar 2018 14:04:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BA=86=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E4=B8=9C=E8=A5=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../B3ClientService.Web.csproj | 50 ++++++ .../ClientGoodsSet_/ClientGoodsSetEdit.cs | 122 ++++++++++++++ .../ClientGoodsSet_/ClientGoodsSetList.cs | 28 ++++ .../ClientGoodsSet_/ClientGoodsSetList.xml | 43 +++++ .../BaseInfos/Goods_/GoodsEdit.cs | 26 +++ .../BaseInfos/Goods_/GoodsList.cs | 23 +++ .../BaseInfos/Goods_/GoodsList.xml | 43 +++++ .../ProductBatch_/ProductBatchEdit.cs | 24 +++ .../ProductBatch_/ProductBatchList.cs | 28 ++++ .../ProductBatch_/ProductBatchList.xml | 47 ++++++ .../BaseInfos/WorkUnit_/WorkUnitEdit.cs | 23 +++ .../BaseInfos/WorkUnit_/WorkUnitList.cs | 13 ++ .../BaseInfos/WorkUnit_/WorkUnitList.xml | 39 +++++ .../BaseInfos/Worker_/WorkerEdit.cs | 57 +++++++ .../BaseInfos/Worker_/WorkerList.cs | 13 ++ .../BaseInfos/Worker_/WorkerList.xml | 43 +++++ .../Dialogs/SelectGoodsDialogs.cs | 40 +++++ .../Dialogs/SelectGoodsDialogs.xml | 31 ++++ .../B3ClientServiceChoiceBoxDataProvider.cs | 20 ++- .../SelectNamedValueRelationBox.cs | 150 ++++++++++++++++++ B3ClientService/B3ClientService.csproj | 11 ++ B3ClientService/B3ClientServiceConsts.cs | 1 + .../BL/BaseInfo/ClientGoodsSetBL.cs | 20 +++ B3ClientService/BL/BaseInfo/GoodsBL.cs | 20 +++ B3ClientService/BL/BaseInfo/ProductBatchBL.cs | 20 +++ B3ClientService/BL/BaseInfo/WorkUnitBL.cs | 20 +++ B3ClientService/BL/BaseInfo/WorkerBL.cs | 45 ++++++ B3ClientService/BO/BaseInfo/Goods.cs | 28 ++++ B3ClientService/BO/BaseInfo/ProductBatch.cs | 11 +- B3ClientService/BO/BaseInfo/WorkUnit.cs | 12 +- B3ClientService/BO/BaseInfo/Worker.cs | 30 ++++ .../BO/BaseInfo/WorkerDriveRelate.cs | 21 +++ .../BO/ClientGoodsSet_/ClientGoodsSet.cs | 27 ++-- .../ClientGoodsSet_/ClientGoodsSet_Detail.cs | 29 ++-- B3ClientService/ConvertUtil.cs | 69 +++++++- B3ClientService/InnerUtils.cs | 17 ++ B3ClientService/NamedValueTemplate.cs | 13 ++ B3ClientService/OfflinRpc/BaseInfoRpc.cs | 117 ++++++++++++++ B3ClientService/OfflinRpc/LoginRpc.cs | 59 +++++++ .../Rpcs/BillRpc/ClientGoodsSetRpc.cs | 4 +- .../config/NamedValue/B3ClientService.xml | 9 ++ .../config/plugins/B3ClientService.plugin | 60 ++++++- 42 files changed, 1453 insertions(+), 53 deletions(-) create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/ClientGoodsSet_/ClientGoodsSetEdit.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/ClientGoodsSet_/ClientGoodsSetList.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/ClientGoodsSet_/ClientGoodsSetList.xml create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/Goods_/GoodsEdit.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/Goods_/GoodsList.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/Goods_/GoodsList.xml create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/ProductBatch_/ProductBatchEdit.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/ProductBatch_/ProductBatchList.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/ProductBatch_/ProductBatchList.xml create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/WorkUnit_/WorkUnitEdit.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/WorkUnit_/WorkUnitList.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/WorkUnit_/WorkUnitList.xml create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/Worker_/WorkerEdit.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/Worker_/WorkerList.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/BaseInfos/Worker_/WorkerList.xml create mode 100644 B3ClientService.Web/Pages/B3ClientService/Dialogs/SelectGoodsDialogs.cs create mode 100644 B3ClientService.Web/Pages/B3ClientService/Dialogs/SelectGoodsDialogs.xml create mode 100644 B3ClientService.Web/WebControls/SelectNamedValueRelationBox.cs create mode 100644 B3ClientService/BL/BaseInfo/ClientGoodsSetBL.cs create mode 100644 B3ClientService/BL/BaseInfo/GoodsBL.cs create mode 100644 B3ClientService/BL/BaseInfo/ProductBatchBL.cs create mode 100644 B3ClientService/BL/BaseInfo/WorkUnitBL.cs create mode 100644 B3ClientService/BL/BaseInfo/WorkerBL.cs create mode 100644 B3ClientService/BO/BaseInfo/Goods.cs create mode 100644 B3ClientService/BO/BaseInfo/Worker.cs create mode 100644 B3ClientService/BO/BaseInfo/WorkerDriveRelate.cs create mode 100644 B3ClientService/InnerUtils.cs create mode 100644 B3ClientService/OfflinRpc/BaseInfoRpc.cs create mode 100644 B3ClientService/OfflinRpc/LoginRpc.cs diff --git a/B3ClientService.Web/B3ClientService.Web.csproj b/B3ClientService.Web/B3ClientService.Web.csproj index 205e26e..e799ff0 100644 --- a/B3ClientService.Web/B3ClientService.Web.csproj +++ b/B3ClientService.Web/B3ClientService.Web.csproj @@ -73,6 +73,39 @@ + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + + + ASPXCodeBehind + ASPXCodeBehind @@ -88,6 +121,7 @@ + @@ -95,6 +129,22 @@ B3ClientService + + + + + + + + + + + + + + + +