爱思开
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.

175 lines
9.2 KiB

2 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 MOIssueDocApprove
  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 ConfirmRd11(List<ICSMOIssueDocApprove> 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. List<string> result = Bills.Select(t => t.WorkPoint).Distinct().ToList();
  35. foreach (string WorkPoint in result)
  36. {
  37. try
  38. {
  39. connS = string.Format(connString, WorkPoint);
  40. conn = new System.Data.SqlClient.SqlConnection(connS);
  41. conn.Open();
  42. SqlTransaction sqlTran = conn.BeginTransaction();
  43. cmd = new SqlCommand();
  44. cmd.Transaction = sqlTran;
  45. cmd.Connection = conn;
  46. foreach (ICSMOIssueDocApprove head in Bills)
  47. {
  48. if (WorkPoint != head.WorkPoint)
  49. continue;
  50. if (!DBHelper.IsInventoryConsolidation(cmd, head.WorkPoint))
  51. throw new Exception("U8正在整理现存量,请稍后再试");
  52. string sql = "";
  53. ICSUserInfo userInfo = new ICSUserInfo();
  54. userInfo = DBHelper.GetPersonInfo(head.User, cmd);
  55. #region 检验单号是否存在
  56. sql = "select * from rdrecord11 where ID='" + head.ID + "'";
  57. DataTable dt = DBHelper.SQlReturnData(sql, cmd);
  58. if (dt != null && dt.Rows.Count > 0)
  59. {
  60. string cHandler = dt.Rows[0]["cHandler"].ToString();
  61. if (!string.IsNullOrEmpty(cHandler))
  62. {
  63. throw new Exception("单据ID:" + head.ID + "不是开立状态!");
  64. }
  65. }
  66. else
  67. {
  68. throw new Exception("单据ID:" + head.ID + "在U8中不存在!");
  69. }
  70. #endregion
  71. #region 审核其他入库单
  72. sql = @"UPDATE dbo.rdrecord11 SET cHandler='" + userInfo.UserName + @"' ,
  73. dVeriDate=CONVERT(VARCHAR(50),GETDATE(),112),dnverifytime=GETDATE() WHERE ID='" + head.ID + "'";
  74. DBHelper.CmdExecuteNonQuery(sql, cmd, "审核核材料出库单失败!");
  75. #endregion
  76. sql = "select * from dbo.rdrecords11 a inner join rdrecord11 b on a.ID=b.ID where a.ID='" + head.ID + "';";
  77. DataTable dtChecks = DBHelper.SQlReturnData(sql, cmd);
  78. #region 更新现存量
  79. for (int i = 0; i < dtChecks.Rows.Count; i++)
  80. {
  81. VouchKey key = new VouchKey();
  82. key.cBustypeUN = "领料";
  83. key.cVouchTypeUN = "11";
  84. key.TableName = "IA_ST_UnAccountVouch11";
  85. //DBHelper.UpdateCurrentStock(cmd, dtChecks.Rows[i]["cInvCode"].ToString(), dtChecks.Rows[i]["cWhCode"].ToString(), "", Convert.ToDecimal(dtChecks.Rows[i]["iQuantity"].ToString()), key);
  86. //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);
  87. string inum = dtChecks.Rows[i]["iAVNum"].ToString();
  88. if (inum == "")
  89. {
  90. inum = "0";
  91. }
  92. DBHelper.UpdateCurrentStockCCGC(cmd, dtChecks.Rows[i]["cInvCode"].ToString(), dtChecks.Rows[i]["cWhCode"].ToString(),
  93. dtChecks.Rows[i]["cBatch"].ToString(), Convert.ToDecimal(dtChecks.Rows[i]["iAVQuantity"].ToString()),
  94. Convert.ToDecimal(inum), dtChecks.Rows[i]["cFree1"].ToString(),
  95. 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(),
  96. "", key, "", "", "", "", 0, 0, 0, 0, 0, 0, 0, 0, Convert.ToInt32(dtChecks.Rows[i]["ID"].ToString()), Convert.ToInt32(dtChecks.Rows[i]["AutoID"].ToString()));
  97. // //回写fInQuantity
  98. // sql = @"Update CurrentStock set fInQuantity=isnull(fInQuantity,0)-" + Convert.ToDecimal(dtChecks.Rows[i]["iQuantity"].ToString()) + @"
  99. // where cInvCode='" + dtChecks.Rows[i]["cInvCode"].ToString() + "' and cWhCode='" + dtChecks.Rows[i]["cWhCode"].ToString() + "' ";
  100. //if (body.cBatch != null)
  101. //{
  102. // sql += "and cBatch='" + body.cBatch + "'";
  103. //}
  104. //else
  105. //{
  106. // sql += "and cBatch=''";
  107. //}
  108. //DBHelper.CmdExecuteNonQuery(sql, cmd, "回写fInQuantity失败!");
  109. cmd.CommandText = sql;
  110. cmd.ExecuteNonQuery();
  111. }
  112. #endregion
  113. cmd.CommandType = CommandType.Text;
  114. cmd.Parameters.Clear();
  115. }
  116. cmd.Transaction.Commit();
  117. }
  118. catch (Exception ex)
  119. {
  120. if (cmd.Transaction != null)
  121. cmd.Transaction.Rollback();
  122. log.Error(ex.Message);
  123. throw new Exception(ex.Message);
  124. }
  125. finally
  126. {
  127. if (conn.State == ConnectionState.Open)
  128. {
  129. conn.Close();
  130. }
  131. conn.Dispose();
  132. }
  133. }
  134. ResultFlag = true;
  135. return ResultFlag;
  136. }
  137. /// <summary>
  138. /// 记录日志
  139. /// </summary>
  140. /// <param name="Bills"></param>
  141. private void LogInfo(List<ICSMOIssueDocApprove> Bills)
  142. {
  143. string HeadList = string.Empty;
  144. string BodyList = string.Empty;
  145. foreach (ICSMOIssueDocApprove head in Bills)
  146. {
  147. HeadList += "\r\n 表头调拨单号:" + head.ID + ",用户:" + head.User + ",站点:" + head.WorkPoint;
  148. foreach (ICSMOIssueDocApprove body in Bills)
  149. {
  150. BodyList += "\r\n 表体主键ID: " + body.ID + "";
  151. }
  152. }
  153. log.Info(HeadList);
  154. log.Info(BodyList);
  155. }
  156. }
  157. }