From 2bc5ccda1fc6e4d1b51d911a9fa3ba9f1461b507 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 16 九月 2025 15:08:28 +0800
Subject: [PATCH] 无线,锁线胶装和精装内页页码不能小于36(除硫酸纸) 取消
---
CY_ECommercePlatform/CY.SQLDAL/OA/OA_FirmAccountRecordDAL.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/CY_ECommercePlatform/CY.SQLDAL/OA/OA_FirmAccountRecordDAL.cs b/CY_ECommercePlatform/CY.SQLDAL/OA/OA_FirmAccountRecordDAL.cs
index 8d311c9..a5f9632 100644
--- a/CY_ECommercePlatform/CY.SQLDAL/OA/OA_FirmAccountRecordDAL.cs
+++ b/CY_ECommercePlatform/CY.SQLDAL/OA/OA_FirmAccountRecordDAL.cs
@@ -195,7 +195,7 @@
fromSource += string.Format(" and a.PaymentUnit like '%{0}%'", PaymentUnit);
}
- return _dataBase.SelectModelPage<Model.OA_FirmAccountRecord>(pa, target, fromSource, "a.LastUpdateTime DESC");
+ return _dataBase.SelectModelPage<Model.OA_FirmAccountRecord>(pa, target, fromSource, "a.Keyid DESC");
}
catch (Exception ex)
{
@@ -254,7 +254,7 @@
}
if (!string.IsNullOrEmpty(PaymentUnit))
{
- fromSource += string.Format(" and a.PaymentUnit='{0}'", PaymentUnit);
+ fromSource += string.Format(" and a.PaymentUnit like '%{0}%'", PaymentUnit);
}
IList<Model.OA_FirmAccountRecord> m_OA_FirmAccountRecordList = _dataBase.SelectModel<Model.OA_FirmAccountRecord>(target, fromSource + " group by RecordTypeId");
--
Gitblit v1.9.1