From 51aebb52e3f964ad5d0e96c6b92ae8e455b24ceb Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 10 四月 2026 13:08:17 +0800
Subject: [PATCH] 需要修改的, 不选板材,直接按照板材规格扣减库存。 发版套数不填的话就是1. 扣减库存的量就是 数量*发版套数 20260410 试卷 6年级添加 答题卡 选项 完成
---
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