From bef6120383b2e8d5695f7c21d0db05681f2c7fdb Mon Sep 17 00:00:00 2001 From: zzr99 <1940172413@qq.com> Date: 星期二, 14 十二月 2021 17:43:53 +0800 Subject: [PATCH] 新增盘点方案 --- WebAPI/ListModels.cs | 12 ++ WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user | 34 ++-- WebAPI/Controllers/SBGL/Sb_EquipMaintainRuleBillController.cs | 4 WebAPI/Models/ClsGy_StockCheckItemBill.cs | 32 +++++ WebAPI/Controllers/SBGL/Sb_EquipDotCheckRuleBillController.cs | 2 WebAPI/DLL/ClsSb_EquipMaintainRuleBill.cs | 9 WebAPI/Controllers/基础资料/基础资料/Gy_StockCheckItemBillController.cs | 254 ++++++++++++++++++++++++++++++++++++++++++ WebAPI/DLL/ClsSb_EquipDotCheckRuleBill.cs | 2 WebAPI/WebAPI.csproj | 2 9 files changed, 326 insertions(+), 25 deletions(-) diff --git a/WebAPI/Controllers/SBGL/Sb_EquipDotCheckRuleBillController.cs b/WebAPI/Controllers/SBGL/Sb_EquipDotCheckRuleBillController.cs index 7282ade..8f00320 100644 --- a/WebAPI/Controllers/SBGL/Sb_EquipDotCheckRuleBillController.cs +++ b/WebAPI/Controllers/SBGL/Sb_EquipDotCheckRuleBillController.cs @@ -92,7 +92,7 @@ return objJsonResult; } - bool IsDete = oBill.DeleteBill(oBill.omodel.HInterID, ref DBUtility.ClsPub.sExeReturnInfo); + bool IsDete = oBill.DeleteBill(lngBillKey, ref DBUtility.ClsPub.sExeReturnInfo); if (IsDete) { objJsonResult.code = "0"; diff --git a/WebAPI/Controllers/SBGL/Sb_EquipMaintainRuleBillController.cs b/WebAPI/Controllers/SBGL/Sb_EquipMaintainRuleBillController.cs index 3a37cea..4bc6994 100644 --- a/WebAPI/Controllers/SBGL/Sb_EquipMaintainRuleBillController.cs +++ b/WebAPI/Controllers/SBGL/Sb_EquipMaintainRuleBillController.cs @@ -90,7 +90,7 @@ objJsonResult.data = null; return objJsonResult; } - if (oBill.omodel.HChecker != "") + if (oBill.omodel.HChecker != ""&& oBill.omodel.HChecker != null) { objJsonResult.code = "0"; objJsonResult.count = 0; @@ -99,7 +99,7 @@ return objJsonResult; } - bool IsDete = oBill.DeleteBill(oBill.omodel.HInterID, ref DBUtility.ClsPub.sExeReturnInfo); + bool IsDete = oBill.DeleteBill(lngBillKey, ref DBUtility.ClsPub.sExeReturnInfo); if (IsDete) { objJsonResult.code = "0"; diff --git "a/WebAPI/Controllers/\345\237\272\347\241\200\350\265\204\346\226\231/\345\237\272\347\241\200\350\265\204\346\226\231/Gy_StockCheckItemBillController.cs" "b/WebAPI/Controllers/\345\237\272\347\241\200\350\265\204\346\226\231/\345\237\272\347\241\200\350\265\204\346\226\231/Gy_StockCheckItemBillController.cs" new file mode 100644 index 0000000..6be9f4d --- /dev/null +++ "b/WebAPI/Controllers/\345\237\272\347\241\200\350\265\204\346\226\231/\345\237\272\347\241\200\350\265\204\346\226\231/Gy_StockCheckItemBillController.cs" @@ -0,0 +1,254 @@ +锘縰sing Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Data; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Web.Http; +using WebAPI.Models; + +namespace WebAPI.Controllers.鍩虹璧勬枡.鍩虹璧勬枡 +{ + public class Gy_StockCheckItemBillController : ApiController + { + public DBUtility.ClsPub.Enum_BillStatus BillStatus;//鍗曟嵁鐘舵�侊紙鏂板锛屼慨鏀癸紝娴忚锛屾洿鏂板崟浠凤紝鍙樻洿锛� + private json objJsonResult = new json(); + public DataSet ds = new DataSet(); + public SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); + public Models.ClsGy_StockCheckItemBill BillNew0 = new Models.ClsGy_StockCheckItemBill(); + + #region 鐩樼偣鏂规鍒楄〃 + [Route("Gy_StockCheckItemBill/Get_StockCheckItemList")] + [HttpGet] + public object Get_StockCheckItemList(string sWhere) + { + try + { + ds = StockCheckItemList(sWhere); + if (ds == null) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "鏌ヨ鏁版嵁寮傚父锛岃涓庣鐞嗗憳鑱旂郴锛�"; + objJsonResult.data = null; + return objJsonResult; + } + else + { + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = "杩斿洖璁板綍鎴愬姛锛�"; + objJsonResult.data = ds.Tables[0]; + return objJsonResult; + } + } + catch (Exception ex) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "鏌ヨ鏁版嵁寮傚父锛岃涓庣鐞嗗憳鑱旂郴锛�" + ex.ToString(); + objJsonResult.data = null; + return objJsonResult; + } + } + + public static DataSet StockCheckItemList(string sWhere) + { + string sql1 = string.Format(@"select * from h_v_Gy_StockCheckItemList"); + if (sWhere == null || sWhere.Equals("")) + { + return new SQLHelper.ClsCN().RunProcReturn(sql1 + sWhere + " order by hitemid desc", "h_v_Gy_StockCheckItemList"); + } + else + { + string sql = sql1 + sWhere + "order by hitemid desc"; + return new SQLHelper.ClsCN().RunProcReturn(sql, "h_v_Gy_StockCheckItemList"); + } + } + #endregion + + #region [鐩樼偣鏂规鍒犻櫎鍔熻兘] + [Route("Gy_StockCheckItemBill/set_DeleteBill")] + [HttpGet] + public object set_DeleteBill(string HItemID) + { + Int64 lngBillKey = 0; + lngBillKey = DBUtility.ClsPub.isLong(HItemID); + if (lngBillKey == 0) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "鍗曟嵁ID涓虹┖锛�"; + objJsonResult.data = null; + return objJsonResult; + } + ds = oCn.RunProcReturn("select * from Gy_StockCheckItem where HItemID=" + lngBillKey, "Gy_StockCheckItem"); + if (ds != null) + { + oCn.RunProc("Delete from Gy_StockCheckItem where HItemID=" + lngBillKey); + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = "鍒犻櫎鎴愬姛锛�"; + objJsonResult.data = null; + return objJsonResult; + } + else + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "姝ゅ崟鎹笉瀛樺湪锛岃鏌ョ湅鏄惁閲嶅鍒犻櫎"; + objJsonResult.data = null; + return objJsonResult; + } + + } + + #endregion + + #region [缂栬緫鏄剧ず琛ㄥご] + [Route("Gy_StockCheckItemBill/GetStockCheckItemByID")] + [HttpGet] + public object GetStockCheckItemByID(string HID) + { + Int64 lngBillKey = 0; + lngBillKey = DBUtility.ClsPub.isLong(HID); + if (lngBillKey == 0) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "鍗曟嵁ID涓虹┖锛�"; + objJsonResult.data = null; + return objJsonResult; + } + ds = oCn.RunProcReturn("select * from Gy_StockCheckItem where HItemID=" + lngBillKey, "Gy_ConkReason"); + if (ds != null) + { + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = ""; + objJsonResult.data = ds.Tables[0]; + return objJsonResult; + } + else + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "姝ゅ崟鎹笉瀛樺湪"; + objJsonResult.data = null; + return objJsonResult; + } + + } + + #endregion + + #region 淇濆瓨鐩樼偣鏂规 + [Route("Gy_StockCheckItemBill/SaveGy_StockCheckItem")] + [HttpPost] + public object SaveGy_StockCheckItem([FromBody] JObject msg) + { + var _value = msg["msg"].ToString(); + string msg2 = _value.ToString(); + string[] sArray = msg2.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries); + string msg1 = sArray[0].ToString(); + string msg3 = sArray[1].ToString();//褰撳墠浜� + SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); + ListModels oListModels = new ListModels(); + try + { + Models.ClsGy_StockCheckItemBill oBill = new Models.ClsGy_StockCheckItemBill(); + List<Models.ClsGy_StockCheckItemBill> lsmain = new List<Models.ClsGy_StockCheckItemBill>(); + msg1 = msg1.Replace("\\", ""); + msg1 = msg1.Replace("\n", ""); //\n + lsmain = oListModels.getObjectByJson_Gy_StockCheckItem(msg1); + foreach (Models.ClsGy_StockCheckItemBill oItem in lsmain) + { + if (oItem.HNumber.Trim() == "") + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "淇濆瓨澶辫触锛佷唬鐮佷笉鑳戒负绌猴紒"; + objJsonResult.data = 1; + return objJsonResult; + } + if (oItem.HName.Trim() == "") + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "淇濆瓨澶辫触锛佸悕绉颁笉鑳戒负绌猴紒"; + objJsonResult.data = 1; + return objJsonResult; + } + //寰楀埌鐭唬鐮� + string sShortNumber; + sShortNumber = DBUtility.ClsPub.GetShortNumber(oItem.HNumber.Trim()); + if (sShortNumber.Trim() == "") + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "淇濆瓨澶辫触锛佺煭浠g爜涓虹┖锛�"; + objJsonResult.data = 1; + return objJsonResult; + } + oItem.HShortNumber = sShortNumber;//鐭唬鐮� + oItem.HEndFlag = true;//鏈骇鏍囧織 + oItem.HLevel = DBUtility.ClsPub.GetLevel(oItem.HNumber.Trim()); //绛夌骇 + oBill = oItem; + } + + //淇濆瓨 + //淇濆瓨瀹屾瘯鍚庡鐞� + if (oBill.HItemID == 0) + { + oCn.RunProc("Insert into Gy_StockCheckItem " + + " (HNumber,HName,HHelpCode,HShortNumber,HParentID" + + ",HLevel,HEndFlag,HStopflag,HRemark,HUseFlag,HMakeTime,HMakeEmp,HEndDate,HOrgID) " + + " Values('" + oBill.HNumber + "','" + oBill.HName + "','" + oBill.HHelpCode + "','" + oBill.HShortNumber + "'," + oBill.HParentID.ToString() + + "," + oBill.HLevel.ToString() + "," + Convert.ToString(oBill.HEndFlag ? 1 : 0) + "," + Convert.ToString(oBill.HStopflag ? 1 : 0) + ",'" + oBill.HRemark + + "','" + oBill.HUseFlag + "',getdate(),'" + msg3 + "','" + oBill.HEndDate.ToString() + "'," + oBill.HOrgID.ToString()+ + ")", ref DBUtility.ClsPub.sExeReturnInfo); + //淇敼涓婄骇涓洪潪鏈骇浠g爜 + oCn.RunProc("Update Gy_StockCheckItem set HEndflag=0 where HItemID=" + oBill.HParentID, ref DBUtility.ClsPub.sExeReturnInfo); + + objJsonResult.code = "0"; + objJsonResult.count = 1; + objJsonResult.Message = "淇濆瓨鎴愬姛锛�"; + //WebAPIController.Add_Log("閫佽揣鍗曚笅鎺�", UserName, "鐢熸垚閫佽揣鍗�"); + objJsonResult.data = 1; + return objJsonResult; + } + else + { + oCN.RunProc("UpDate Gy_StockCheckItem set " + + " HNumber='" + oBill.HNumber + "'" + //鍥哄畾璧嬪��=============== + ",HName='" + oBill.HName + "'" + + ",HShortNumber='" + oBill.HShortNumber + "'" + + ",HHelpCode='" + oBill.HHelpCode + "'" + + ",HUseFlag='" + oBill.HUseFlag + "'" + + ",HRemark='" + oBill.HRemark + "'" + + ",HEndDate='" + oBill.HEndDate + "'" + + ",HModifyTime=getdate()" + + ",HModifyEmp='" + msg3 + "'" + + ",HStopflag=" + Convert.ToString(oBill.HStopflag ? 1 : 0) + + " where HItemID=" + oBill.HItemID.ToString()); + + objJsonResult.code = "1"; + objJsonResult.count = 1; + objJsonResult.Message = "淇敼鎴愬姛锛�"; + objJsonResult.data = 1; + return objJsonResult; + } + } + catch (Exception e) + { + objJsonResult.code = "0"; + objJsonResult.count = 0; + objJsonResult.Message = "淇濆瓨澶辫触锛�" + e.ToString(); + objJsonResult.data = 1; + return objJsonResult; + } + } + #endregion + } +} diff --git a/WebAPI/DLL/ClsSb_EquipDotCheckRuleBill.cs b/WebAPI/DLL/ClsSb_EquipDotCheckRuleBill.cs index d72eaef..b02339f 100644 --- a/WebAPI/DLL/ClsSb_EquipDotCheckRuleBill.cs +++ b/WebAPI/DLL/ClsSb_EquipDotCheckRuleBill.cs @@ -12,7 +12,7 @@ public ClsSb_EquipDotCheckRuleBill() { - base.MvarItemKeySub = "ClsSb_EquipDotCheckRuleBillSub"; + base.MvarItemKeySub = "Sb_EquipDotCheckRuleBillSub"; base.MvarItemKeySub2 = ""; base.MvarItemKeySub3 = ""; base.MvarItemKeySub4 = ""; diff --git a/WebAPI/DLL/ClsSb_EquipMaintainRuleBill.cs b/WebAPI/DLL/ClsSb_EquipMaintainRuleBill.cs index 0007191..8bc97a1 100644 --- a/WebAPI/DLL/ClsSb_EquipMaintainRuleBill.cs +++ b/WebAPI/DLL/ClsSb_EquipMaintainRuleBill.cs @@ -42,7 +42,7 @@ // oCn.BeginTran(); //鏇存柊涓昏〃 - oCn.RunProc("UpDate Sb_EquipMaintainPlanBillMain set " + + oCn.RunProc("UpDate Sb_EquipMaintainRuleBillMain set " + " HBillNo='" + omodel.HBillNo + "'" + //鍥哄畾璧嬪��=============== ",HDate='" + omodel.HDate + "'" + ",HYear='" + omodel.HYear.ToString() + "'" + @@ -83,7 +83,7 @@ //鎻掑叆閰嶄欢瀛愯〃 foreach (Models.ClsSb_EquipMaintainRuleBillSub oSub in DetailColl_Mater) { - oCn.RunProc("Insert into Sb_EquipMaintainRuleBillSub " + + string sql = "Insert into Sb_EquipMaintainRuleBillSub " + " (HInterID,HEntryID," + "HCloseMan,HEntryCloseDate,HCloseType,HRemark," + "HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney," + @@ -92,8 +92,9 @@ + omodel.HInterID.ToString() + "," + oSub.HEntryID.ToString() + ",'" + oSub.HCloseMan + "','" + oSub.HEntryCloseDate + "'," + Convert.ToString(oSub.HCloseType ? 1 : 0) + ",'" + oSub.HRemark + "'" + "," + oSub.HSourceInterID.ToString() + "," + oSub.HSourceEntryID.ToString() + ",'" + oSub.HSourceBillNo + "','" + oSub.HSourceBillType + "'," + oSub.HRelationQty.ToString() + "," + oSub.HRelationMoney.ToString() + - "," + oSub.HQty.ToString() + "," + oSub.HMaterID.ToString() + "," + oSub.HUnitID.ToString() + "," + oSub.HQtyMust.ToString() + - ") "); + "," + oSub.HQty.ToString() + "," + oSub.HMaterID.ToString() + "," + oSub.HUnitID.ToString() + ",0" + + ") "; + oCn.RunProc(sql); } sReturn = "淇敼鍗曟嵁鎴愬姛锛�"; oCn.Commit(); diff --git a/WebAPI/ListModels.cs b/WebAPI/ListModels.cs index e08a6cd..7de695b 100644 --- a/WebAPI/ListModels.cs +++ b/WebAPI/ListModels.cs @@ -583,6 +583,18 @@ } /// <summary> + /// 澶勭悊鏂扮洏鐐规柟妗堣〃鐨刯son + /// </summary> + /// <param name="jsonString"></param> + /// <returns></returns> + public List<Models.ClsGy_StockCheckItemBill> getObjectByJson_Gy_StockCheckItem(string jsonString) + { + jsonString = "[" + jsonString.ToString() + "]"; + List<Models.ClsGy_StockCheckItemBill> list = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Models.ClsGy_StockCheckItemBill>>(jsonString); + return list; + } + + /// <summary> /// 澶勭悊鏂板妯″叿淇濆吇璁板綍琛ㄤ富琛ㄧ殑json /// </summary> /// <param name="jsonString"></param> diff --git a/WebAPI/Models/ClsGy_StockCheckItemBill.cs b/WebAPI/Models/ClsGy_StockCheckItemBill.cs new file mode 100644 index 0000000..eb02994 --- /dev/null +++ b/WebAPI/Models/ClsGy_StockCheckItemBill.cs @@ -0,0 +1,32 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Web; + +namespace WebAPI.Models +{ + public class ClsGy_StockCheckItemBill : DBUtility.ClsGy_Base_Model + { + //public int HItemID; // int //涓婚敭 int + //public string HNumber; // varchar(50) //浠g爜 + //public string HName; // varchar(50) //鍚嶇О + //public string HShortNumber; // varchar(50) //鐭唬鐮� + //public int HParentID; // int //鐖剁骇ID int + //public int HLevel; // int //绛夌骇 int + //public bool HEndFlag; // bit //鏈骇鏍囧織 bit + //public bool HStopflag; // bit //绂佺敤鏍囧織 bit + //public string HRemark; // varchar(500) //澶囨敞 varchar(50) + //public string HHelpCode; // varchar(20) //鍔╄鐮� varchar(20) + //public string HUseFlag; // varchar(10) //浣跨敤鐘舵�侊紙鏈娴嬶紝鏈娇鐢紝宸蹭娇鐢級 + //public DateTime HMakeTime; // datetime //寤虹珛鏃堕棿(getdate()) + public string HMakeEmp; // varchar(100) //鍒涘缓浜� + public string HCheckEmp; // varchar(100) //瀹℃牳浜� + public DateTime HCheckTime; // datetime //瀹℃牳鏃堕棿 + public string HModifyEmp; // varchar(100) //淇敼浜� + public DateTime HModifyTime; // datetime //淇敼鏃堕棿 + public string HStopEmp; // varchar(100) //绂佺敤浜� + public DateTime HStopTime; // datetime //绂佺敤鏃堕棿 + public DateTime HEndDate; + public int HOrgID; + } +} \ No newline at end of file diff --git a/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user b/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user index 94890a8..3cf6bdb 100644 --- a/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user +++ b/WebAPI/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -18,25 +18,25 @@ <publishTime>02/22/2013 08:43:40</publishTime> </File> <File Include="bin/BLL.dll"> - <publishTime>12/10/2021 16:24:07</publishTime> + <publishTime>12/14/2021 15:46:52</publishTime> </File> <File Include="bin/BLL.pdb"> - <publishTime>12/10/2021 16:24:07</publishTime> + <publishTime>12/14/2021 15:46:52</publishTime> </File> <File Include="bin/DAL.dll"> - <publishTime>12/10/2021 16:24:05</publishTime> + <publishTime>12/14/2021 15:46:49</publishTime> </File> <File Include="bin/DAL.pdb"> - <publishTime>12/10/2021 16:24:05</publishTime> + <publishTime>12/14/2021 15:46:49</publishTime> </File> <File Include="bin/Dapper.dll"> <publishTime>07/22/2016 14:52:40</publishTime> </File> <File Include="bin/DBUtility.dll"> - <publishTime>12/10/2021 16:24:02</publishTime> + <publishTime>12/14/2021 15:46:43</publishTime> </File> <File Include="bin/DBUtility.pdb"> - <publishTime>12/10/2021 16:24:02</publishTime> + <publishTime>12/14/2021 15:46:43</publishTime> </File> <File Include="bin/Interop.gregn6Lib.dll"> <publishTime>08/25/2021 10:28:25</publishTime> @@ -60,10 +60,10 @@ <publishTime>07/25/2012 11:48:56</publishTime> </File> <File Include="bin/Model.dll"> - <publishTime>12/10/2021 16:24:03</publishTime> + <publishTime>12/14/2021 15:46:44</publishTime> </File> <File Include="bin/Model.pdb"> - <publishTime>12/10/2021 16:24:03</publishTime> + <publishTime>12/14/2021 15:46:44</publishTime> </File> <File Include="bin/Models/ClsSc_MouldScrapOutBillMain.cs"> <publishTime>08/16/2021 17:23:15</publishTime> @@ -72,22 +72,22 @@ <publishTime>08/03/2014 20:33:56</publishTime> </File> <File Include="bin/Pub_Class.dll"> - <publishTime>12/10/2021 16:24:00</publishTime> + <publishTime>12/14/2021 15:46:39</publishTime> </File> <File Include="bin/Pub_Class.pdb"> - <publishTime>12/10/2021 16:24:00</publishTime> + <publishTime>12/14/2021 15:46:39</publishTime> </File> <File Include="bin/Pub_Control.dll"> - <publishTime>12/10/2021 16:24:01</publishTime> + <publishTime>12/14/2021 15:46:40</publishTime> </File> <File Include="bin/Pub_Control.pdb"> - <publishTime>12/10/2021 16:24:01</publishTime> + <publishTime>12/14/2021 15:46:40</publishTime> </File> <File Include="bin/SQLHelper.dll"> - <publishTime>12/10/2021 16:24:01</publishTime> + <publishTime>12/14/2021 15:46:41</publishTime> </File> <File Include="bin/SQLHelper.pdb"> - <publishTime>12/10/2021 16:24:01</publishTime> + <publishTime>12/14/2021 15:46:41</publishTime> </File> <File Include="bin/stdole.dll"> <publishTime>05/09/2021 13:35:37</publishTime> @@ -189,10 +189,10 @@ <publishTime>11/24/2014 11:18:48</publishTime> </File> <File Include="bin/WebAPI.dll"> - <publishTime>12/10/2021 16:24:10</publishTime> + <publishTime>12/14/2021 15:47:00</publishTime> </File> <File Include="bin/WebAPI.pdb"> - <publishTime>12/10/2021 16:24:10</publishTime> + <publishTime>12/14/2021 15:47:00</publishTime> </File> <File Include="bin/WebGrease.dll"> <publishTime>07/17/2013 17:03:52</publishTime> @@ -363,7 +363,7 @@ <publishTime>08/06/2021 22:57:28</publishTime> </File> <File Include="Web.config"> - <publishTime>12/10/2021 16:24:31</publishTime> + <publishTime>12/14/2021 15:49:27</publishTime> </File> </ItemGroup> </Project> \ No newline at end of file diff --git a/WebAPI/WebAPI.csproj b/WebAPI/WebAPI.csproj index b741b9c..c7af795 100644 --- a/WebAPI/WebAPI.csproj +++ b/WebAPI/WebAPI.csproj @@ -349,6 +349,7 @@ <Compile Include="Controllers\Open_PrintTemController.cs" /> <Compile Include="Controllers\ReportStepPlatFormController.cs" /> <Compile Include="Controllers\鍗氭棩鑷姩鎵爜绾縗ScanlineAPIController.cs" /> + <Compile Include="Controllers\鍩虹璧勬枡\鍩虹璧勬枡\Gy_StockCheckItemBillController.cs" /> <Compile Include="Controllers\宸ヨ祫绠$悊\Pay_OtherBalBillController.cs" /> <Compile Include="Controllers\宸ヨ祫绠$悊\Pay_GroupBalBillController.cs" /> <Compile Include="Controllers\PurchaseOrderController.cs" /> @@ -451,6 +452,7 @@ <Compile Include="DLL\ClsSc_MouldMoveStockStepOutBill.cs" /> <Compile Include="DLL\宸ヨ祫绠$悊\ClsPay_GroupBalBill.cs" /> <Compile Include="DLL\宸ヨ祫绠$悊\ClsPay_WorkTimesBill.cs" /> + <Compile Include="Models\ClsGy_StockCheckItemBill.cs" /> <Compile Include="Models\jsonScanline.cs" /> <Compile Include="Models\ScanLineCode.cs" /> <Compile Include="Models\宸ヨ祫绠$悊\ClsPay_GroupBalBillEmp.cs" /> -- Gitblit v1.9.1