From 89742acf77b33c3acb5b306d4d99f4ae01bb2e64 Mon Sep 17 00:00:00 2001 From: duhe <226547893@qq.com> Date: 星期三, 27 三月 2024 16:32:55 +0800 Subject: [PATCH] 销售订单:增加 待关闭项 按钮,点击后数据只显示 剩余订金 在(0,500]区间审核状态且没有进行行关闭的记录。 销售订单:同一个单据只有第一条记录显示主表信息 与 layui自带的排序功能 ,问题解决。(使用layui的排序时,触发事件,不在进行同一个单据只有第一条记录显示主表信息处理) --- WebAPI/WebAPI.csproj | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index fe1bb6e..7d13559 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -415,7 +415,9 @@ <Compile Include="Controllers\MJGL\Sc_MouldLifeUseBillController.cs" /> <Compile Include="Controllers\MJGL\Sc_MouldScrapRequestBillController.cs" /> <Compile Include="Controllers\MJGL\Sc_MouldStatusChangeBillController.cs" /> + <Compile Include="Controllers\MJGL\Sc_MouldUpperBillController.cs" /> <Compile Include="Controllers\Pay_ReportController.cs" /> + <Compile Include="Controllers\SBGL\Gy_FixCardBillController.cs" /> <Compile Include="Controllers\SBGL\Sb_EquipConkBookBillController.cs" /> <Compile Include="Controllers\SBGL\Sb_EquipSparepartsBillController.cs" /> <Compile Include="Controllers\SBGL\Sb_EquipSparepartsChangeBillController.cs" /> @@ -469,6 +471,8 @@ <Compile Include="Controllers\Sc_ProcessMangementController.cs" /> <Compile Include="Controllers\Sc_ProcessReportController.cs" /> <Compile Include="Controllers\XSGL\Kf_ICStockBackBillController.cs" /> + <Compile Include="Controllers\XSGL\Kf_SellOutEntryReportController.cs" /> + <Compile Include="Controllers\XSGL\Xs_OutDoorCheckBillController.cs" /> <Compile Include="Controllers\XSGL\Xs_SellOutChangeBillController.cs" /> <Compile Include="Controllers\XSGL\Xs_CusBalanceReportController.cs" /> <Compile Include="Controllers\XSGL\Xs_ReceivableBillController.cs" /> @@ -479,7 +483,7 @@ <Compile Include="Controllers\CGGL\YF_PayMentBackBillController.cs" /> <Compile Include="Controllers\CGGL\YF_PayMentBillController.cs" /> <Compile Include="Controllers\XSGL\YS_ReceiveBackBillController.cs" /> - <Compile Include="Controllers\XSGL\YF_PayMentOtherBillController.cs" /> + <Compile Include="Controllers\CGGL\YF_PayMentOtherBillController.cs" /> <Compile Include="Controllers\XSGL\YS_ReceiveOtherBillController.cs" /> <Compile Include="Controllers\XSGL\YS_ReceiveBillController.cs" /> <Compile Include="Controllers\XSGL\Kf_SellOutBillController.cs" /> @@ -1078,6 +1082,7 @@ <Folder Include="Views\Sc_MouldRepairSendWorkBill\" /> <Folder Include="Views\Sc_MouldScrapRequestBill\" /> <Folder Include="Views\Sc_MouldStatusChangeBill\" /> + <Folder Include="Views\Sc_MouldUpperBill\" /> <Folder Include="Views\Sc_ProcessExchangeIssueBill\" /> <Folder Include="Views\Sc_ProcessSendWork\" /> <Folder Include="Views\Sc_ProcExchRecordBackBill\" /> @@ -1157,6 +1162,8 @@ <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\</OutputPath> <DefineConstants>TRACE;DEBUG</DefineConstants> + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> + <RunCodeAnalysis>true</RunCodeAnalysis> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> <PlatformTarget>x86</PlatformTarget> -- Gitblit v1.9.1