From 3b3804a451ff7cb7eaa9cc6c3af62d7092caa6ce Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期四, 16 四月 2026 08:48:30 +0800
Subject: [PATCH] 设备增加 印刷设备 把厚道对应的机台都放到印刷设备 完成
---
CY_ECommercePlatform/CY.BLL/OA/OA_OutOfStorageBLL.cs | 26 +++++++++++++++++++++++++-
1 files changed, 25 insertions(+), 1 deletions(-)
diff --git a/CY_ECommercePlatform/CY.BLL/OA/OA_OutOfStorageBLL.cs b/CY_ECommercePlatform/CY.BLL/OA/OA_OutOfStorageBLL.cs
index 5e5e08c..5beff3b 100644
--- a/CY_ECommercePlatform/CY.BLL/OA/OA_OutOfStorageBLL.cs
+++ b/CY_ECommercePlatform/CY.BLL/OA/OA_OutOfStorageBLL.cs
@@ -113,7 +113,7 @@
m_OA_Procurement = _OA_ProcurementBLL.SelectSingleModel(Keyid);
m_OA_Procurement.PurchaseStatusId = 201;
- m_OA_Procurement.Remark = m_OA_WarehouseInfo.WarehouseName;
+ m_OA_Procurement.WarehouseName = m_OA_WarehouseInfo.WarehouseName;
if (!WarehouseName.Equals("涓婃満浣跨敤"))
{
//搴撳瓨琛ㄥ璞�
@@ -219,5 +219,29 @@
{
return outOfStorageDAL.getModelList(pa, FirmId, Keyids);
}
+
+
+ public IEnumerable<Model.OA_OutOfStorage> getModelListByRemark(Guid FirmId, string Remark)
+ {
+ return outOfStorageDAL.getModelListByRemark( FirmId, Remark);
+ }
+
+ /// <summary>
+ /// 鍒犻櫎鍚堜綔瀹㈡埛
+ /// </summary>
+ /// <param name="rType"></param>
+ /// <returns></returns>
+ public bool DeleteModel(CY.Model.OA_OutOfStorage rType)
+ {
+ try
+ {
+ outOfStorageDAL.DeleteModel(rType);
+ }
+ catch (Exception ex)
+ {
+ throw ex;
+ }
+ return true;
+ }
}
}
--
Gitblit v1.9.1