From 7b2a3e95296e04ca69900c46f852f1f078d3e5f6 Mon Sep 17 00:00:00 2001 From: black-goat-me <226547893@qq.com> Date: 星期一, 24 四月 2023 14:10:54 +0800 Subject: [PATCH] 其它入库单缓存列表:动态列实现 采购入库单缓存列表:动态列实现 委外入库单缓存列表:动态列实现 生产领料单缓存列表:动态列实现 生产入库单缓存列表:动态列实现 销售出库单缓存列表:动态列实现 --- WebAPI/Controllers/MJGL/Sc_MouldScrapInBillController.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WebAPI/Controllers/MJGL/Sc_MouldScrapInBillController.cs b/WebAPI/Controllers/MJGL/Sc_MouldScrapInBillController.cs index cc86125..598cfba 100644 --- a/WebAPI/Controllers/MJGL/Sc_MouldScrapInBillController.cs +++ b/WebAPI/Controllers/MJGL/Sc_MouldScrapInBillController.cs @@ -451,11 +451,11 @@ string sql1 = string.Format(@"select * from h_v_Sc_MouldScrapInHouseBillList where 搴撳瓨缁勭粐='" + Organization + "'"); if (sWhere == null || sWhere.Equals("")) { - return new SQLHelper.ClsCN().RunProcReturn(sql1 + sWhere + "order by hmainid desc", "h_v_Sc_MouldScrapInHouseBillList"); + return new SQLHelper.ClsCN().RunProcReturn(sql1 + sWhere + "order by 鍒跺崟鏃ユ湡 desc", "h_v_Sc_MouldScrapInHouseBillList"); } else { - string sql = sql1 + sWhere + "order by hmainid desc"; + string sql = sql1 + sWhere + "order by 鍒跺崟鏃ユ湡 desc"; return new SQLHelper.ClsCN().RunProcReturn(sql, "h_v_Sc_MouldScrapInHouseBillList"); } -- Gitblit v1.9.1