纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

177 lines
9.5 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. using ICSSoft.Common;
  2. using ICSSoft.Entity;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Data;
  6. using System.Data.SqlClient;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace ICSSoft.DataProject
  11. {
  12. public class OtherOutDoc
  13. {
  14. private static log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
  15. private static string connString = System.Configuration.ConfigurationManager.AppSettings["ERPConnStr"];
  16. private static string ERPDB = System.Configuration.ConfigurationManager.AppSettings["ERPDB"];
  17. private static string Type = System.Configuration.ConfigurationManager.AppSettings["Type"];
  18. /// <summary>
  19. /// 审核其他出库单
  20. /// </summary>
  21. /// <param name="Bills"></param>
  22. /// <returns></returns>
  23. public bool ConfirmRd09(List<ICSOtherOutDoc> Bills)
  24. {
  25. bool ResultFlag = false;
  26. string connS = "";
  27. SqlConnection conn = new SqlConnection();
  28. SqlCommand cmd = new SqlCommand();
  29. if (Bills.Count <= 0)
  30. {
  31. throw new Exception("传送数据为空!");
  32. }
  33. LogInfo(Bills);
  34. foreach (ICSOtherOutDoc head in Bills)
  35. {
  36. try
  37. {
  38. connS = string.Format(connString, head.WorkPoint);
  39. conn = new System.Data.SqlClient.SqlConnection(connS);
  40. conn.Open();
  41. SqlTransaction sqlTran = conn.BeginTransaction();
  42. cmd = new SqlCommand();
  43. cmd.Transaction = sqlTran;
  44. cmd.Connection = conn;
  45. string sql = "";
  46. ICSUserInfo userInfo = new ICSUserInfo();
  47. userInfo = DBHelper.GetPersonInfo(head.User, cmd);
  48. #region 检验单号是否存在
  49. sql = "select * from RdRecord09 where ID='" + head.ID + "'";
  50. DataTable dt = DBHelper.SQlReturnData(sql, cmd);
  51. if (dt != null && dt.Rows.Count > 0)
  52. {
  53. string cHandler = dt.Rows[0]["cHandler"].ToString();
  54. if (!string.IsNullOrEmpty(cHandler))
  55. {
  56. throw new Exception("单据ID:" + head.ID + "不是开立状态!");
  57. }
  58. }
  59. else
  60. {
  61. throw new Exception("单据ID:" + head.ID + "在U8中不存在!");
  62. }
  63. #endregion
  64. #region 审核其他出库单
  65. sql = @"UPDATE dbo.RdRecord09 SET cHandler='" + userInfo.UserName + @"' ,
  66. dVeriDate=CONVERT(VARCHAR(50),GETDATE(),112),dnverifytime=GETDATE() WHERE ID='" + head.ID + "'";
  67. DBHelper.CmdExecuteNonQuery(sql, cmd, "审核其他出库单失败!");
  68. #endregion
  69. sql = "select * from dbo.RdRecords09 a inner join RdRecord09 b on a.ID=b.ID where b.ID='" + head.ID + "';";
  70. DataTable dtChecks = DBHelper.SQlReturnData(sql, cmd);
  71. if (head.UpdateStock)
  72. {
  73. #region 更新现存量
  74. for (int i = 0; i < dtChecks.Rows.Count; i++)
  75. {
  76. //判断物料批号与现存量表批号是否一致、数量不能超过现存量物料数量
  77. //sql = @"SELECT cBatch,iQuantity from CurrentStock WHERE cInvCode='" + dtChecks.Rows[i]["cInvCode"].ToString() + "'AND cBatch=''and cWhCode='" + dtChecks.Rows[i]["cWhCode"].ToString() + "'";
  78. sql = @"SELECT cBatch,iQuantity from CurrentStock WHERE cInvCode='" + dtChecks.Rows[i]["cInvCode"].ToString() + "'AND cBatch='" + dtChecks.Rows[i]["cBatch"].ToString() + @"'AND cFree1='" + dtChecks.Rows[i]["cFree1"].ToString() + @"' AND cFree2='" + dtChecks.Rows[i]["cFree2"].ToString() + @"' AND cFree3='" + dtChecks.Rows[i]["cFree3"].ToString() + @"' AND cFree4='" + dtChecks.Rows[i]["cFree4"].ToString() + @"' AND cFree5='" + dtChecks.Rows[i]["cFree5"].ToString() + @"' AND cFree6='" + dtChecks.Rows[i]["cFree6"].ToString() + @"' AND cFree7='" + dtChecks.Rows[i]["cFree7"].ToString() + @"' AND cFree8='" + dtChecks.Rows[i]["cFree8"].ToString() + @"' AND cFree9='" + dtChecks.Rows[i]["cFree9"].ToString() + @"' AND cFree10='" + dtChecks.Rows[i]["cFree10"].ToString() + @"' and cWhCode='" + dtChecks.Rows[i]["cWhCode"].ToString() + "'";
  79. DataTable dtItem = DBHelper.SQlReturnData(sql, cmd);
  80. if (dtItem != null && dtItem.Rows.Count > 0)
  81. {
  82. //if (!dtItem.Rows[0]["cBatch"].ToString().Equals(body.cBatch))
  83. //{
  84. // throw new Exception("物料条码的批号与U8现存量物料批号不一致,物料:" + body.cInvCode);
  85. //}
  86. if (Convert.ToDecimal(dtItem.Rows[0]["iQuantity"].ToString()) < Convert.ToDecimal(dtChecks.Rows[i]["iQuantity"].ToString()))
  87. {
  88. throw new Exception("物料条码的数量大于U8现存量物料数量,物料:" + dtChecks.Rows[i]["cInvCode"].ToString());
  89. }
  90. }
  91. else
  92. {
  93. throw new Exception("物料:" + dtChecks.Rows[i]["cInvCode"].ToString() + "在现存量表中不存在!");
  94. }
  95. VouchKey key = new VouchKey();
  96. key.cBustypeUN = "其他出库";
  97. key.cVouchTypeUN = "09";
  98. key.TableName = "IA_ST_UnAccountVouch09";
  99. //DBHelper.UpdateCurrentStock(cmd, dtChecks.Rows[i]["cInvCode"].ToString(), dtChecks.Rows[i]["cWhCode"].ToString(),"", -Convert.ToDecimal(dtChecks.Rows[i]["iQuantity"].ToString()), key);
  100. DBHelper.UpdateCurrentStockNEW(cmd, dtChecks.Rows[i]["cInvCode"].ToString(), dtChecks.Rows[i]["cWhCode"].ToString(), dtChecks.Rows[i]["cBatch"].ToString(), -Convert.ToDecimal(dtChecks.Rows[i]["iQuantity"].ToString()), dtChecks.Rows[i]["cFree1"].ToString(), dtChecks.Rows[i]["cFree2"].ToString(), dtChecks.Rows[i]["cFree3"].ToString(), dtChecks.Rows[i]["cFree4"].ToString(), dtChecks.Rows[i]["cFree5"].ToString(), dtChecks.Rows[i]["cFree6"].ToString(), dtChecks.Rows[i]["cFree7"].ToString(), dtChecks.Rows[i]["cFree8"].ToString(), dtChecks.Rows[i]["cFree9"].ToString(), dtChecks.Rows[i]["cFree10"].ToString(), key);
  101. //回写fOutQuantityy
  102. // sql = @"Update CurrentStock set fOutQuantity=isnull(fOutQuantity,0)-" + Convert.ToDecimal(dtChecks.Rows[i]["iQuantity"].ToString()) + @"
  103. // where cInvCode='" + dtChecks.Rows[i]["cInvCode"].ToString() + "' and cWhCode='" + dtChecks.Rows[i]["cWhCode"].ToString() + "' ";
  104. //if (body.cBatch != null)
  105. //{
  106. // sql += "and cBatch='" + body.cBatch + "'";
  107. //}
  108. //else
  109. //{
  110. // sql += "and cBatch=''";
  111. //}
  112. //DBHelper.CmdExecuteNonQuery(sql, cmd, "回写fOutQuantity失败!");
  113. //if (head.UpdateTodoQuantity == true)
  114. //{
  115. #region 判断现存量是否足够
  116. sql = @"IF EXISTS(SELECT AutoID FROM dbo.CurrentStock WHERE iQuantity<0 OR iNum<0 OR fOutQuantity<0)
  117. BEGIN
  118. DECLARE @MSG NVARCHAR(100)
  119. SELECT @MSG='ERP待出库数量不足AutoID'+CAST(AutoID AS NVARCHAR(100)) FROM dbo.CurrentStock WHERE iQuantity<0 OR iNum<0 OR fOutQuantity<0
  120. RAISERROR(@MSG,16,1)
  121. END";
  122. cmd.CommandText = sql;
  123. cmd.ExecuteNonQuery();
  124. #endregion
  125. }
  126. #endregion
  127. }
  128. cmd.Transaction.Commit();
  129. }
  130. catch (Exception ex)
  131. {
  132. cmd.Transaction.Rollback();
  133. log.Error(ex.Message);
  134. throw new Exception(ex.Message);
  135. }
  136. finally
  137. {
  138. if (conn.State == ConnectionState.Open)
  139. {
  140. conn.Close();
  141. }
  142. conn.Dispose();
  143. }
  144. }
  145. ResultFlag = true;
  146. return ResultFlag;
  147. }
  148. /// <summary>
  149. /// 记录日志
  150. /// </summary>
  151. /// <param name="Bills"></param>
  152. private void LogInfo(List<ICSOtherOutDoc> Bills)
  153. {
  154. string HeadList = string.Empty;
  155. string BodyList = string.Empty;
  156. foreach (ICSOtherOutDoc head in Bills)
  157. {
  158. HeadList += "\r\n 表头主键ID:" + head.ID + ",用户:" + head.User + ",站点:" + head.WorkPoint+"";
  159. }
  160. log.Info(HeadList);
  161. log.Info(BodyList);
  162. }
  163. }
  164. }