using Newtonsoft.Json;
|
using Newtonsoft.Json.Linq;
|
using Pub_Class;
|
using System;
|
using System.Collections;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Data.SqlClient;
|
using System.Web.Http;
|
using WebAPI.Models;
|
|
namespace WebAPI.Controllers
|
{
|
|
public class QC_POStockInCheckBillController : ApiController
|
{
|
public DBUtility.ClsPub.Enum_BillStatus BillStatus;
|
|
private json objJsonResult = new json();
|
public DataSet ds = new DataSet();
|
public WebServer webserver = new WebServer();
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
public DAL.ClsQC_POStockInCheckBill BillOld = new DAL.ClsQC_POStockInCheckBill();
|
|
//DataSet ds;
|
|
|
|
#region 检验值保存
|
[Route("QC_POStockInCheckBill/set_SaveValue")]
|
[HttpPost]
|
public object set_SaveValue([FromBody] JObject msg)
|
{
|
ListModels oListModels = new ListModels();
|
try
|
{
|
var _value = msg["msg"].ToString();
|
string msg1 = _value.ToString();
|
string[] sArray = msg1.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries);
|
|
string Value = sArray[0].ToString(); //检验值表格
|
Int64 HInterID = Convert.ToInt64(sArray[1]); //主ID
|
Int64 HEntryID = Convert.ToInt64(sArray[2]); //子ID
|
bool bResult;
|
|
|
List<Model.ClsQC_POStockInCheckBillSub_ValueGrid> valueList = new List<Model.ClsQC_POStockInCheckBillSub_ValueGrid>();
|
valueList = oListModels.getObjectByJson_ClsQC_POStockInCheckBillSub_ValueGrid(Value);
|
|
DAL.ClsQC_POStockInCheckBill BillNew = new DAL.ClsQC_POStockInCheckBill();
|
|
for (int i = 0; i < valueList.ToArray().Length; i++)
|
{
|
if (i >= 0)//HQty
|
{
|
Model.ClsQC_POStockInCheckBillSub_ValueGrid oSub_Value = new Model.ClsQC_POStockInCheckBillSub_ValueGrid();
|
oSub_Value.HInterID = HInterID;
|
oSub_Value.HEntryID = HEntryID;
|
oSub_Value.HSEQ = i + 1;
|
oSub_Value.HInSpectResult = ClsPub.isStrNull(valueList[i].HInSpectResult);
|
oSub_Value.HInSpectValue = ClsPub.isDoule(valueList[i].HInSpectValue);
|
oSub_Value.HInSpectValueB = ClsPub.isLong(valueList[i].HInSpectValueB);
|
oSub_Value.HInSpectValueT = ClsPub.isStrNull(valueList[i].HInSpectValueT);
|
|
BillNew.DetailColl_Value.Add(oSub_Value);
|
}
|
else
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无明细行信息!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
bResult = BillNew.AddValue(ref ClsPub.sExeReturnInfo, ref HInterID, ref HEntryID);
|
|
if (bResult == true)
|
{
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "保存检验值成功";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
else
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "保存失败!原因:" + ClsPub.sExeReturnInfo;
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
#endregion
|
|
#region [返回检验值列表]
|
/// <summary>
|
///返回检验值列表
|
/// </summary>
|
/// <param name="sWhere"></param>
|
/// <returns></returns>
|
[Route("QC_POStockInCheckBill_ValueTable/getValueList")]
|
[HttpGet]
|
public object getValueList(Int64 HInterID, Int64 HEntryID, string user)
|
{
|
DataSet ds;
|
try
|
{
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
List<object> columnNameList = new List<object>();
|
|
ds = oCN.RunProcReturn("select * from QC_POStockInCheckBillSub_ValueGrid where HInterID=" + HInterID + " and HEntryID=" + HEntryID, "QC_POStockInCheckBillSub_ValueGrid");
|
|
//添加列名
|
foreach (DataColumn col in ds.Tables[0].Columns)
|
{
|
Type dataType = col.DataType;
|
string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}";
|
columnNameList.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名
|
}
|
|
if (ds.Tables[0].Rows.Count > 0)
|
{
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "Sucess!";
|
objJsonResult.data = ds.Tables[0];
|
objJsonResult.list = columnNameList;
|
return objJsonResult;
|
}
|
else
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无检测值数据!";
|
objJsonResult.data = ds.Tables[0];
|
return objJsonResult;
|
}
|
|
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "没有返回任何记录!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
#endregion
|
|
#region [返回 编辑时 检验值 列表]
|
[Route("QC_POStockInCheckBill/QC_POStockInCheckBill_Edit")]
|
[HttpGet]
|
public object QC_POStockInCheckBill_Edit(string sWhere, string user)
|
{
|
try
|
{
|
List<object> columnNameList = new List<object>();
|
|
string sql1 = "select * from h_v_QC_POStockInCheckBill_Edit where 1 = 1 ";
|
string sql = sql1 + sWhere + " order by hmainid desc";
|
ds = oCN.RunProcReturn(sql, "h_v_QC_POStockInCheckBill_Edit");
|
|
//添加列名
|
foreach (DataColumn col in ds.Tables[0].Columns)
|
{
|
Type dataType = col.DataType;
|
string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}";
|
columnNameList.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名
|
}
|
|
if (ds.Tables[0].Rows.Count > 0)
|
{
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "Sucess!";
|
objJsonResult.list = columnNameList;
|
objJsonResult.data = ds.Tables[0];
|
return objJsonResult;
|
}
|
else
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "没有查询到数据";
|
objJsonResult.list = columnNameList;
|
objJsonResult.data = ds.Tables[0];
|
return objJsonResult;
|
}
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
#endregion
|
|
#region 来料检验单维护 审核 反审核 关闭 反关闭 作废 反作废
|
/// <summary>
|
/// 来料检验单维护 审核、反审核
|
/// </summary>
|
/// <param name="HInterID">单据ID</param>
|
/// <param name="IsAudit">审核(0),反审核(1)</param>
|
/// <param name="CurUserName">审核人</param>
|
/// <returns></returns>
|
[Route("QC_POStockInCheck_ValueTable/QC_POStockInCheckValue")]
|
[HttpGet]
|
public object QC_POStockInCheckValue(int HInterID, int IsAudit, string CurUserName)
|
{
|
try
|
{
|
//审核权限
|
if (!DBUtility.ClsPub.Security_Log_second("QC_POStockInCheckBill_Check", 1, false, CurUserName))
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "审核失败!无权限!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
var ds = oCN.RunProcReturn("select * from QC_POStockInCheckBillMain where HInterID=" + HInterID, "QC_POStockInCheckBillMain");
|
if (ds.Tables[0].Rows.Count > 0)
|
{
|
if (IsAudit == 0) //审核判断
|
{
|
if (ds.Tables[0].Rows[0]["HChecker"].ToString() != "")
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "单据已审核!不能再次审核!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
if (IsAudit == 1) //反审核判断
|
{
|
if (ds.Tables[0].Rows[0]["HChecker"].ToString() == "")
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "单据未审核!不需要反审核!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
}
|
else
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "单据不存在!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
oCN.BeginTran();
|
|
if (IsAudit == 0) //审核判断
|
{
|
//审核前控制
|
DataSet BeforeDs = oCN.RunProcReturn("Exec h_p_QC_POStockInCheckBill_BeforeCheckCtrl " + HInterID.ToString() + ",'" + CurUserName + "'", "h_p_QC_POStockInCheck_BeforeCheckCtrl");
|
if (BeforeDs == null || BeforeDs.Tables[0].Rows.Count == 0)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "审核前判断失败!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
else
|
{
|
if (DBUtility.ClsPub.isLong(BeforeDs.Tables[0].Rows[0]["HBack"]) == 1)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "审核失败!" + DBUtility.ClsPub.isStrNull(BeforeDs.Tables[0].Rows[0]["HRemark"]);
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
oCN.RunProc("update QC_POStockInCheckBillMain set HChecker='" + CurUserName + "',HCheckDate=getdate() where HInterID=" + HInterID);
|
|
//审核后控制
|
DataSet EndDs = oCN.RunProcReturn("Exec h_p_QC_POStockInCheckBill_AfterCheckCtrl " + HInterID.ToString() + ",'"+ ds.Tables[0].Rows[0]["HBillNo"].ToString() + "','" + CurUserName + "'", "h_p_QC_POStockInCheck_AfterCheckCtrl");
|
if (EndDs == null || EndDs.Tables.Count == 0 || EndDs.Tables[0].Rows.Count == 0)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "审核后判断失败!";
|
objJsonResult.data = null;
|
oCN.RollBack();
|
return objJsonResult;
|
}
|
else
|
{
|
if (DBUtility.ClsPub.isLong(EndDs.Tables[0].Rows[0]["HBack"]) == 1)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "审核失败!" + DBUtility.ClsPub.isStrNull(EndDs.Tables[0].Rows[0]["HRemark"]);
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "审核成功";
|
objJsonResult.data = null;
|
}
|
if (IsAudit == 1) //反审核判断
|
{
|
//反审核前控制
|
DataSet BeforeDs = oCN.RunProcReturn("Exec h_p_QC_POStockInCheck_BeforeUnCheckCtrl " + HInterID.ToString() + ",'" + CurUserName + "'", "h_p_QC_POStockInCheck_BeforeUnCheckCtrl");
|
if (BeforeDs == null || BeforeDs.Tables[0].Rows.Count == 0)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "反审核前判断失败!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
else
|
{
|
if (DBUtility.ClsPub.isLong(BeforeDs.Tables[0].Rows[0]["HBack"]) == 1)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "反审核失败!" + DBUtility.ClsPub.isStrNull(BeforeDs.Tables[0].Rows[0]["HRemark"]);
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
oCN.RunProc("update QC_POStockInCheckMain set HChecker='',HCheckDate=null where HInterID=" + HInterID);
|
|
//反审核后控制
|
DataSet EndDs = oCN.RunProcReturn("Exec h_p_QC_POStockInCheck_AfterUnCheckCtrl " + HInterID.ToString() + ",'" + ds.Tables[0].Rows[0]["HBillNo"].ToString() + "','" + CurUserName + "'", " h_p_QC_POStockInCheck_AfterUnCheckCtrl");
|
if (EndDs == null || EndDs.Tables.Count == 0 || EndDs.Tables[0].Rows.Count == 0)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "反审核后判断失败!";
|
objJsonResult.data = null;
|
oCN.RollBack();
|
return objJsonResult;
|
}
|
else
|
{
|
if (DBUtility.ClsPub.isLong(EndDs.Tables[0].Rows[0]["HBack"]) == 1)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "反审核失败!" + DBUtility.ClsPub.isStrNull(EndDs.Tables[0].Rows[0]["HRemark"]);
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "反审核成功";
|
objJsonResult.data = null;
|
}
|
oCN.Commit();
|
|
return objJsonResult;
|
}
|
catch (Exception e)
|
{
|
oCN.RollBack();
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "审核失败或者反审核失败!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
#endregion
|
|
#region 来料检验单保存
|
[Route("QC_POStockInCheckBill/set_SaveBill")]
|
[HttpPost]
|
public object set_SaveBill([FromBody] JObject sMainSub)
|
{
|
var _value = sMainSub["sMainSub"].ToString();
|
string msg1 = _value.ToString();
|
//保存单据
|
return objJsonResult = AddBillMain(msg1);
|
}
|
|
public json AddBillMain(string msg1)
|
{
|
string[] sArray = msg1.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries);
|
string msg2 = sArray[0].ToString();
|
string msg3 = sArray[1].ToString();
|
string OperationType = sArray[2].ToString().Trim();
|
string user = sArray[3].ToString();
|
string Value = sArray[4].ToString();
|
bool bResult;
|
try
|
{
|
//判断权限
|
if (!DBUtility.ClsPub.Security_Log("QC_POStockInCheckBill_Edit", 1, false, user))
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无保存权限";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
msg2 = "[" + msg2.ToString() + "]";
|
List<Model.ClsQC_POStockInCheckBillMain> mainList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Model.ClsQC_POStockInCheckBillMain>>(msg2);
|
DAL.ClsQC_POStockInCheckBill BillNew = new DAL.ClsQC_POStockInCheckBill();
|
|
|
|
//判断会计期是否合理
|
string s = "";
|
int sYear = 0;
|
int sPeriod = 0;
|
DateTime HDate = mainList[0].HDate;//日期
|
if (DBUtility.Xt_BaseBillFun.Fun_AllowYearPeriod(HDate, ref sYear, ref sPeriod, ref s) == false)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = s;
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
BillNew.omodel.HYear = sYear;
|
BillNew.omodel.HPeriod = sPeriod;
|
//固定赋值=================================
|
BillNew.omodel.HInterID = mainList[0].HInterID;//递入type得到的单据ID
|
BillNew.omodel.HBillNo = mainList[0].HBillNo;//递入type得到的单据号
|
BillNew.omodel.HDate = HDate;
|
BillNew.omodel.HRemark = mainList[0].HRemark;//备注
|
BillNew.omodel.HMaker = mainList[0].HMaker;
|
BillNew.omodel.HSourceID = ClsPub.isLong(mainList[0].HSourceID);
|
BillNew.omodel.HICMOInterID = ClsPub.isLong(mainList[0].HICMOInterID);
|
BillNew.omodel.HICMOBillNo = ClsPub.isStrNull(mainList[0].HICMOBillNo);
|
BillNew.omodel.HICMOEntryID = ClsPub.isLong(mainList[0].HICMOEntryID);
|
BillNew.omodel.HICMOQty = ClsPub.isLong(mainList[0].HICMOQty);
|
BillNew.omodel.HProcExchInterID = ClsPub.isLong(mainList[0].HProcExchInterID);
|
BillNew.omodel.HProcExchEntryID = ClsPub.isLong(mainList[0].HProcExchEntryID);
|
BillNew.omodel.HProcExchBillNo = ClsPub.isStrNull(mainList[0].HProcExchBillNo);
|
BillNew.omodel.HProcExchQty = ClsPub.isLong(mainList[0].HProcExchQty);
|
BillNew.omodel.HProcID = ClsPub.isLong(mainList[0].HProcID);
|
BillNew.omodel.HMaterID = ClsPub.isLong(mainList[0].HMaterID);
|
BillNew.omodel.HFirstCheckEmp = ClsPub.isLong(mainList[0].HFirstCheckEmp);
|
BillNew.omodel.HLastResult = ClsPub.isBool(mainList[0].HLastResult);
|
BillNew.omodel.HMainSourceInterID = ClsPub.isLong(mainList[0].HMainSourceInterID);
|
BillNew.omodel.HMainSourceEntryID = ClsPub.isLong(mainList[0].HMainSourceEntryID);
|
BillNew.omodel.HMainSourceBillNo = ClsPub.isStrNull(mainList[0].HMainSourceBillNo);
|
BillNew.omodel.HMainSourceBillType = ClsPub.isStrNull(mainList[0].HMainSourceBillType);
|
BillNew.omodel.HQCSchemeID = ClsPub.isLong(mainList[0].HQCSchemeID);
|
BillNew.omodel.HBillStatus = 1;
|
BillNew.omodel.HShiftsID = ClsPub.isLong(mainList[0].HShiftsID);
|
BillNew.omodel.HErrTreatment = ClsPub.isStrNull(mainList[0].HErrTreatment);
|
BillNew.omodel.HBatchNo = ClsPub.isStrNull(mainList[0].HBatchNo);
|
BillNew.omodel.HTakeSampleCheckBillID = ClsPub.isLong(mainList[0].HTakeSampleCheckBillID);
|
BillNew.omodel.HTakeSampleCheckBillNo = ClsPub.isStrNull(mainList[0].HTakeSampleCheckBillNo);
|
|
List<Model.ClsQC_POStockInCheckBillSub> subList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Model.ClsQC_POStockInCheckBillSub>>(msg3);
|
BillNew.DetailColl = new List<Model.ClsQC_POStockInCheckBillSub>();
|
|
for (int i = 0; i < subList.ToArray().Length; i++)
|
{
|
if (i >= 0)//HQty
|
{
|
Model.ClsQC_POStockInCheckBillSub oSub = new Model.ClsQC_POStockInCheckBillSub();
|
oSub.HEntryID = i + 1;
|
oSub.HRemark = ClsPub.isStrNull(subList[i].HRemark);
|
oSub.HSourceInterID = ClsPub.isLong(subList[i].HSourceInterID);
|
oSub.HSourceEntryID = ClsPub.isLong(subList[i].HSourceEntryID);
|
oSub.HSourceBillType = ClsPub.isStrNull(subList[i].HSourceBillType);
|
oSub.HSourceBillNo = ClsPub.isStrNull(subList[i].HSourceBillNo);
|
oSub.HRelationQty = DBUtility.ClsPub.isDoule(subList[i].HRelationQty);
|
oSub.HRelationMoney = DBUtility.ClsPub.isDoule(subList[i].HRelationMoney);
|
oSub.HCloseMan = DBUtility.ClsPub.isStrNull(subList[i].HCloseMan);
|
oSub.HEntryCloseDate = DBUtility.ClsPub.isDate(subList[i].HEntryCloseDate);
|
oSub.HCloseType = DBUtility.ClsPub.isBool(subList[i].HCloseType);
|
oSub.HQCCheckItemID = DBUtility.ClsPub.isLong(subList[i].HQCCheckItemID);
|
oSub.HQCStd = DBUtility.ClsPub.isStrNull(subList[i].HQCStd);
|
oSub.HUnit = DBUtility.ClsPub.isStrNull(subList[i].HUnit);
|
oSub.HQCNote = DBUtility.ClsPub.isStrNull(subList[i].HQCNote);
|
oSub.HResult = DBUtility.ClsPub.isStrNull(subList[i].HResult);
|
oSub.HMax = DBUtility.ClsPub.isStrNull(subList[i].HMax);
|
oSub.HMin = DBUtility.ClsPub.isStrNull(subList[i].HMin);
|
oSub.HAvg = DBUtility.ClsPub.isStrNull(subList[i].HAvg);
|
oSub.HBillNo_bak = DBUtility.ClsPub.isStrNull(mainList[0].HBillNo);
|
|
oSub.HSampleSchemeID = DBUtility.ClsPub.isLong(subList[i].HSampleSchemeID);
|
oSub.HSampleQty = DBUtility.ClsPub.isLong(subList[i].HSampleQty);
|
oSub.HSampleDamageQty = DBUtility.ClsPub.isDoule(subList[i].HSampleDamageQty);
|
oSub.HAcceptQty = DBUtility.ClsPub.isLong(subList[i].HAcceptQty);
|
oSub.HRejectQty = DBUtility.ClsPub.isLong(subList[i].HRejectQty);
|
oSub.HSampleUnRightQty = DBUtility.ClsPub.isDoule(subList[i].HSampleUnRightQty);
|
oSub.HStatus = DBUtility.ClsPub.isStrNull(subList[i].HStatus);
|
oSub.HUnitID = DBUtility.ClsPub.isLong(subList[i].HUnitID);
|
oSub.HInspectVal = DBUtility.ClsPub.isStrNull(subList[i].HInspectVal);
|
oSub.HTargetVal = DBUtility.ClsPub.isStrNull(subList[i].HTargetVal);
|
oSub.HUpLimit = DBUtility.ClsPub.isStrNull(subList[i].HUpLimit);
|
oSub.HDownLimit = DBUtility.ClsPub.isStrNull(subList[i].HDownLimit);
|
oSub.HUpOffSet = DBUtility.ClsPub.isStrNull(subList[i].HUpOffSet);
|
oSub.HDownOffSet = DBUtility.ClsPub.isStrNull(subList[i].HDownOffSet);
|
oSub.HAnalysisMethod = DBUtility.ClsPub.isStrNull(subList[i].HAnalysisMethod);
|
oSub.HKeyInspect = DBUtility.ClsPub.isLong(subList[i].HKeyInspect);
|
oSub.HInspectInstruMentID = DBUtility.ClsPub.isLong(subList[i].HInspectInstruMentID);
|
oSub.HInspectResult = DBUtility.ClsPub.isStrNull(subList[i].HResult);
|
BillNew.DetailColl.Add(oSub);
|
}
|
else
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无明细行信息!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
|
|
|
|
//保存完毕后处理
|
if (OperationType.Equals("1") || OperationType.Equals("2"))
|
{
|
bResult = BillNew.AddBill(ref ClsPub.sExeReturnInfo);
|
}
|
else
|
{
|
if (BillOld.ShowBill(mainList[0].HInterID, ref s) == false)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "此单据有误!";
|
objJsonResult.data = 1;
|
return objJsonResult;
|
}
|
//判断是否可编辑
|
if (BillOld.omodel.HChecker != "" && BillOld.omodel.HChecker != null)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "此单据已经被审核,不允许修改!";
|
objJsonResult.data = 1;
|
return objJsonResult;
|
}
|
|
bResult = BillNew.ModifyBill(BillNew.omodel.HInterID, ref ClsPub.sExeReturnInfo);
|
}
|
//提示
|
if (bResult == true)
|
{
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = ClsPub.sExeReturnInfo + "单据号:" + mainList[0].HBillNo.Trim();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
else
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "保存失败!原因:" + ClsPub.sExeReturnInfo;
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
#endregion
|
|
#region [来料入库检验单]
|
/// <summary>
|
/// 返回列表
|
/// 来料入库检验单
|
///参数:string sql。
|
///返回值:object。
|
/// </summary>
|
[Route("QC_POStockInCheckBill/GetPOStockInCheckBill")]
|
[HttpGet]
|
public object GetPOStockInCheckBill(string sWhere,string user)
|
{
|
try
|
{
|
List<object> a = new List<object>();
|
//查看权限
|
if (!DBUtility.ClsPub.Security_Log("QC_POStockInCheckBill_Query", 1, false, user))
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无查看权限!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
ds = QC_POStockInCheckBill(sWhere);
|
foreach (DataColumn col in ds.Tables[0].Columns)//遍历ds中第一个表(Tables[0])的所有列(Columns)每次循环中,col变量会持有当前列的引用
|
{
|
Type dataType = col.DataType; //获取当前数据类型传入 自定义变量datadataType
|
string ColmString = "{\"ColmCols\":\"" + col.ColumnName + "\",\"ColmType\":\"" + dataType.Name + "\"}"; //字符串拼接 // 将列名和数据类型信息拼接成一个JSON格式的字符串
|
a.Add(JsonConvert.DeserializeObject(ColmString));//获取到DataColumn列对象的列名
|
}
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "返回记录成功!";
|
objJsonResult.data = ds.Tables[0];
|
objJsonResult.list=a;
|
return objJsonResult;
|
}
|
catch (Exception ex)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "没有返回任何记录!" + ex.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
public static DataSet QC_POStockInCheckBill(string sWhere)
|
{
|
if (sWhere == null || sWhere.Equals(""))
|
{
|
return new SQLHelper.ClsCN().RunProcReturn("select * from h_v_QC_Edit_POStockInCheckBillList order by hmainid desc", "h_v_QC_Edit_POStockInCheckBillList");
|
}
|
else
|
{
|
string sql1 = "select * from h_v_QC_Edit_POStockInCheckBillList where 1 = 1 ";
|
string sql = sql1 + sWhere + "order by hmainid desc";
|
return new SQLHelper.ClsCN().RunProcReturn(sql, "h_v_QC_Edit_POStockInCheckBillList");
|
}
|
|
}
|
#endregion
|
|
#region 删除单据
|
/// <summary>
|
///删除功能
|
/// </summary>
|
/// <returns></returns>
|
[Route("QC_POStockInCheckBill/DeltetPOStockInCheckBill")]
|
[HttpGet]
|
public object DeltetPOStockInCheckBill(string HInterID, string user)
|
{
|
try
|
{
|
//查看权限
|
if (!DBUtility.ClsPub.Security_Log("QC_POStockInCheckBill_Delete", 1, false, user))
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无删除权限!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
oCN.BeginTran();
|
oCN.RunProc("Delete From QC_POStockInCheckBillMain where HInterID = " + HInterID);
|
oCN.RunProc("Delete From QC_POStockInCheckBillSub where HInterID = " + HInterID);
|
oCN.RunProc("Delete From QC_POStockInCheckBillSub_ValueGrid where HInterID = " + HInterID);
|
oCN.RunProc("Delete From QC_POStockInCheckBillSub_Result where HInterID = " + HInterID);
|
oCN.Commit();
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "删除成功!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
catch (Exception e)
|
{
|
oCN.RollBack();
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
//
|
#endregion
|
|
#region [已废弃]
|
|
#region[编辑时获取表头数据]
|
[Route("QC_POStockInCheckBill/QC_POStockInCheckBillListCheckDetail")]
|
[HttpGet]
|
public ApiResult<DataSet> QC_POStockInCheckBillListCheckDetail(string HID)
|
{
|
if (string.IsNullOrEmpty(HID))
|
return new ApiResult<DataSet> { code = -1, msg = "ID不能为空" };
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
string sql = "select top 1 * from h_v_QC_POStockInCheckBillList_Edit where hmainid= " + HID + " ";
|
|
var dataSet = oCN.RunProcReturn(sql, "h_v_QC_Edit_POStockInCheckBillList");
|
if (dataSet == null || dataSet.Tables[0].Rows.Count == 0)
|
return new ApiResult<DataSet> { code = -1, msg = "不存在结算单号" };
|
|
return new ApiResult<DataSet> { code = 1, msg = "查询成功", data = dataSet };
|
}
|
#endregion
|
|
#region[编辑时获取表体数据]
|
[Route("QC_POStockInCheckBill/QC_POStockInCheckBillListProjectDetai")]
|
[HttpGet]
|
public object QC_POStockInCheckBillListProjectDetai(string sqlWhere)
|
{
|
DataSet ds;
|
try
|
{
|
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
|
string sql1 = "SELECT * FROM h_v_QC_POStockInCheckBillList_Edit where 1 = 1 ";
|
string sql = sql1 + sqlWhere;
|
ds = oCN.RunProcReturn(sql, "h_v_QC_Edit_POStockInCheckBillList");
|
objJsonResult.code = "0";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "获取信息成功!";
|
objJsonResult.data = ds.Tables[0];
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "没有返回任何记录!" + e.ToString();
|
objJsonResult.data = null;
|
}
|
return objJsonResult;
|
}
|
#endregion
|
|
#region 保存单据
|
/// <summary>
|
/// 新增单据-保存按钮
|
///参数:string sql。
|
///返回值:object。
|
/// </summary>
|
[Route("QC_POStockInCheckBill/AddBill")]
|
[HttpPost]
|
public object AddBill([FromBody] JObject sMainSub)
|
{
|
var _value = sMainSub["msg"].ToString();
|
string msg1 = _value.ToString();
|
oCN.BeginTran();
|
//保存主表
|
objJsonResult = AddBillMain(msg1);
|
if (objJsonResult.code == "0")
|
{
|
oCN.RollBack();
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = objJsonResult.Message;
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
oCN.Commit();
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = "新增单据成功!";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
public json AddBillMain_Obsolete(string msg1)
|
{
|
string[] sArray = msg1.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries);
|
string msg2 = sArray[0].ToString();
|
string msg3 = sArray[1].ToString();
|
string user = sArray[2].ToString();
|
try
|
{
|
//判断权限
|
if (!DBUtility.ClsPub.Security_Log("QC_POStockInCheckBill_Edit", 1, false, user))
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "无保存权限";
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
msg2 = "[" + msg2.ToString() + "]";
|
List<QC_POStockInCheckBill> mainList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<QC_POStockInCheckBill>>(msg2);
|
int HYear = 2021;
|
double HPeriod = 1;
|
string HBillType = "7503";
|
string HBillSubType = "7503";
|
long HInterID = mainList[0].HInterID;//递入type得到的单据ID
|
DateTime HDate = mainList[0].HDate;//日期
|
string HBillNo = mainList[0].HBillNo;//递入type得到的单据号
|
long HBillStatus = mainList[0].HBillStatus;
|
string HRemark = mainList[0].HRemark;//备注
|
string HBacker = mainList[0].HBacker;
|
//DateTime HBackDate = mainList[0].HBackDate;
|
string HBackRemark = mainList[0].HBackRemark;
|
string HChecker = mainList[0].HChecker;
|
//DateTime HCheckDate = mainList[0].HCheckDate;
|
string HMaker = mainList[0].HMaker;
|
//DateTime HMakeDate = mainList[0].HMakeDate;
|
long HSupID = mainList[0].HSupID;
|
long HMaterID = mainList[0].HMaterID;
|
decimal HInStockQty = mainList[0].HInStockQty;
|
decimal HCheckQty = mainList[0].HCheckQty;
|
decimal HRightQty = mainList[0].HRightQty;
|
decimal HBadQty = mainList[0].HBadQty;
|
long HFirstCheckEmp = mainList[0].HFirstCheckEmp;
|
string HCheckerResult = mainList[0].HCheckerResult;
|
string HSteelStoveNo = mainList[0].HSteelStoveNo;
|
string HSteelCompReport = mainList[0].HSteelCompReport;
|
string HAspect = mainList[0].HAspect;
|
string HSize = mainList[0].HSize;
|
|
|
//主表
|
oCN.RunProc("Insert Into QC_POStockInCheckBillMain " +
|
"(HBillType,HBillSubType,HInterID,HBillNo,HBillStatus,HDate,HMaker,HMakeDate" +
|
",HYear,HPeriod,HRemark" +
|
",HSupID,HMaterID,HInStockQty,HCheckQty,HRightQty" +
|
",HBadQty,HFirstCheckEmp,HCheckerResult" +
|
",HSteelStoveNo,HSteelCompReport,HAspect,HSize" +
|
") " +
|
" values('" + HBillType + "','" + HBillSubType + "'," + HInterID.ToString() + ",'" + HBillNo + "'," + HBillStatus.ToString() + ",'" + HDate + "','" + DBUtility.ClsPub.CurUserName + "',getdate()" +
|
"," + HYear.ToString() + "," + HPeriod.ToString() + ",'" + HRemark + "'" +
|
"," + HSupID.ToString() + "," + HMaterID.ToString() + "," + HInStockQty.ToString() + "," + HCheckQty.ToString() + "," + HRightQty.ToString() +
|
"," + HBadQty.ToString() + "," + HFirstCheckEmp.ToString() + ",'" + HCheckerResult + "'" +
|
",'" + HSteelStoveNo + "','" + HSteelCompReport + "','" + HAspect + "','" + HSize + "'" +
|
") ");
|
|
//保存子表
|
objJsonResult = AddBillSub(msg3, HInterID);
|
if (objJsonResult.code == "0")
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = objJsonResult.Message;
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = null;
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
catch (Exception e)
|
{
|
objJsonResult.code = "0";
|
objJsonResult.count = 0;
|
objJsonResult.Message = "Exception!" + e.ToString();
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
}
|
|
public json AddBillSub(string msg3, long HInterID)
|
{
|
List<QC_POStockInCheckBillSub> subList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<QC_POStockInCheckBillSub>>(msg3);
|
for (int i = 0; i < subList.ToArray().Length; i++)
|
{
|
string HBillNo_bak = subList[0].HBillNo_bak;
|
long HEntryID = subList[0].HEntryID;//工段ID
|
string HCloseMan = subList[0].HCloseMan;
|
long HCloseType = subList[0].HCloseType;
|
string HRemark = subList[0].HRemark;
|
long HSourceInterID = subList[0].HSourceInterID;
|
long HSourceEntryID = subList[0].HSourceEntryID;
|
string HSourceBillNo = subList[0].HSourceBillNo;
|
string HSourceBillType = subList[0].HSourceBillType;
|
decimal HRelationQty = subList[0].HRelationQty;
|
decimal HRelationMoney = subList[0].HRelationMoney;
|
long HQCCheckClassID = subList[0].HQCCheckClassID;
|
long HQCCheckItemID = subList[0].HQCCheckItemID;
|
string HQCStd = subList[0].HQCStd;
|
string HResult = subList[0].HResult;
|
string HQCRelValue = subList[0].HQCRelValue;
|
long HProcCheckEmp = subList[0].HProcCheckEmp;
|
DateTime HProcCheckTime = subList[0].HProcCheckTime;
|
|
string sql = "Insert into QC_POStockInCheckBillSub " +
|
" (HInterID,HBillNo_bak,HEntryID,HCloseMan" +
|
",HEntryCloseDate,HCloseType,HRemark,HSourceInterID" +
|
",HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney" +
|
",HQCCheckClassID,HQCCheckItemID,HQCStd,HResult" +
|
",HQCRelValue,HProcCheckEmp,HProcCheckTime" +
|
") values("
|
+ HInterID.ToString() + ",'" + HBillNo_bak + "'," + HEntryID.ToString() + ",'" + HCloseMan + "'" +
|
",getdate()," + HCloseType + ",'" + HRemark + "'," + HSourceInterID.ToString() +
|
"," +HSourceEntryID.ToString() + ",'" + HSourceBillNo + "','" + HSourceBillType + "'," + HRelationQty.ToString() + "," + HRelationMoney.ToString() +
|
"," + HQCCheckClassID.ToString() + "," + HQCCheckItemID.ToString() + ",'" + HQCStd + "','" + HResult + "'" +
|
",'" + HQCRelValue + "'," + HProcCheckEmp.ToString() + ",'" + HProcCheckTime + "'" +
|
") ";
|
oCN.RunProc(sql);
|
}
|
|
objJsonResult.code = "1";
|
objJsonResult.count = 1;
|
objJsonResult.Message = null;
|
objJsonResult.data = null;
|
return objJsonResult;
|
}
|
|
#endregion
|
|
|
|
#endregion
|
}
|
}
|