From 777eb41b54602375bf6e7a0f26207f5fbaf27031 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期一, 06 三月 2023 16:36:33 +0800
Subject: [PATCH] 1.节拍工价新增、编辑加工价类型字段区分自制、外协 2.工序编辑,工序类型切换保存时删除对应节拍工价表 3.工单派发时判断区分自制、外协工序 4.计件工资报表增加剔除工序参数
---
VueWebApi/DLL/BLL/SystemSettingBLL.cs | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/VueWebApi/DLL/BLL/SystemSettingBLL.cs b/VueWebApi/DLL/BLL/SystemSettingBLL.cs
index c9a6d26..4a63375 100644
--- a/VueWebApi/DLL/BLL/SystemSettingBLL.cs
+++ b/VueWebApi/DLL/BLL/SystemSettingBLL.cs
@@ -52,5 +52,41 @@
return SystemSettingDAL.SystemAnnouncementDelete(id);
}
#endregion
+
+
+ #region[SOP鍒楄〃鏌ヨ]
+ public static ToMessage SystemSopSearch(string search, string check, int startNum, int endNum, string prop, string order)
+ {
+ return SystemSettingDAL.SystemSopSearch(search,check,startNum,endNum,prop,order);
+ }
+ #endregion
+
+ #region[SOP鏂囦欢涓婁紶鏌ユ壘璁惧绫诲瀷鏁版嵁]
+ public static ToMessage SystemSopDeviceSearch()
+ {
+ return SystemSettingDAL.SystemSopDeviceSearch();
+ }
+ #endregion
+
+ #region[SOP鏂囦欢浣滀笟鏂囦欢涓婁紶鑾峰彇鏈�澶х増鏈彿]
+ public static ToMessage SystemSopMaxVersion(string devicetypecode, string filetypecode, string partcode)
+ {
+ return SystemSettingDAL.SystemSopMaxVersion(devicetypecode,filetypecode,partcode);
+ }
+ #endregion
+
+ #region[SOP鏂囦欢涓婁紶鎻愪氦]
+ public static ToMessage SystemSopSava(string devicetypecode, string filetypecode, string partcode, string fileversion,string file_name, string defilename, string username, string strPath)
+ {
+ return SystemSettingDAL.SystemSopSava(devicetypecode, filetypecode, partcode,fileversion, file_name,defilename, username,strPath);
+ }
+ #endregion
+
+ #region[SOP鏂囦欢鍒犻櫎]
+ public static ToMessage SystemSopDelete(string id, string filepath)
+ {
+ return SystemSettingDAL.SystemSopDelete(id,filepath);
+ }
+ #endregion
}
}
\ No newline at end of file
--
Gitblit v1.9.3