using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Http;
using WebAPI.Models;
namespace WebAPI.Controllers
{
public class Gy_MateMouldController : ApiController
{
public DBUtility.ClsPub.Enum_BillStatus BillStatus;
private json objJsonResult = new json();
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
DataSet ds;
///
/// 返回产品与器具清单列表
///参数:string sql。
///返回值:object。
///
[Route("Gy_MateMould/list")]
[HttpGet]
public object list(string sWhere, string user, string Organization)
{
try
{
List columnNameList = new List();
//编辑权限
//if (!DBUtility.ClsPub.Security_Log_second("Gy_MateMould", 1, false, user))
//{
// objJsonResult.code = "0";
// objJsonResult.count = 0;
// objJsonResult.Message = "无查看权限!";
// objJsonResult.data = null;
// return objJsonResult;
//}
string sql1 = string.Format(@"select * from h_v_Gy_MateMouldInfoList where 1 =1 ");//where 组织名称='" + Organization + "'
if (sWhere == null || sWhere.Equals(""))
{
ds = oCN.RunProcReturn(sql1 + sWhere + " order by HItemID ", "h_v_Gy_MateMouldInfoList");
}
else
{
string sql = sql1 + sWhere + " order by HItemID";
ds = oCN.RunProcReturn(sql, "h_v_Gy_MateMouldInfoList");
}
//添加列名
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列对象的列名
}
objJsonResult.code = "1";
objJsonResult.count = 1;
objJsonResult.Message = "Sucess!";
objJsonResult.data = ds.Tables[0];
objJsonResult.list = columnNameList;
return objJsonResult;
}
catch (Exception e)
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "Exception!" + e.ToString();
objJsonResult.data = null;
return objJsonResult;
}
}
///
/// 根据基础资料ID 查找记录
///参数:string sql。
///返回值:object。
///
[Route("Gy_MateMould/cx")]
[HttpGet]
public object cx(long HInterID)
{
try
{
ds = oCN.RunProcReturn("select * from h_v_Gy_MateMouldInfoList where HitemID=" + HInterID, "h_v_Gy_MateMouldInfoList");
if (ds == null || ds.Tables[0].Rows.Count == 0)
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "false!";
objJsonResult.data = null;
return objJsonResult;
}
else
{
objJsonResult.code = "1";
objJsonResult.count = 1;
objJsonResult.Message = "Sucess!";
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;
}
}
#region 产品与器具清单保存
[Route("Gy_MateMould/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 msg4 = sArray[3].ToString();
bool bResult;
try
{
//查看权限
if (!DBUtility.ClsPub.Security_Log("Gy_ProcPriceList_Edit", 1, false, msg4))
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "无保存权限!";
objJsonResult.data = null;
return objJsonResult;
}
msg2 = "[" + msg2.ToString() + "]";
List mainList = Newtonsoft.Json.JsonConvert.DeserializeObject>(msg2);
List subList = Newtonsoft.Json.JsonConvert.DeserializeObject>(msg3);
DAL.ClsGy_MateMould_Ctl BillNew = new DAL.ClsGy_MateMould_Ctl();
BillNew.DetailColl = new List();
Model.ClsGy_MateMould_Model BillOld = new Model.ClsGy_MateMould_Model();
for (int i = 0; i < subList.ToArray().Length; i++)
{
if (i >= 0)//HQty
{
Model.ClsGy_MateMould_Model oSub = new Model.ClsGy_MateMould_Model();
oSub.HMaterID = DBUtility.ClsPub.isLong(subList[i].HMaterIDCol);
oSub.HRelationID = DBUtility.ClsPub.isLong(subList[i].HRelationIDCol);
oSub.HUnitID = DBUtility.ClsPub.isLong(subList[i].HUnitIDCol);
oSub.HBeginDate = DBUtility.ClsPub.isDate(subList[i].HBeginDateCol);
oSub.HEndDate = DBUtility.ClsPub.isDate(subList[i].HEndDateCol);
oSub.HUsed = false;
oSub.HMaker = DBUtility.ClsPub.isStrNull(mainList[0].HMaker);
oSub.HMakeDate = DateTime.Today.ToString();
oSub.HRemark = DBUtility.ClsPub.isStrNull(subList[i].HRemarkCol);
BillNew.DetailColl.Add(oSub);
}
else
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "无明细行信息!";
objJsonResult.data = null;
return objJsonResult;
}
}
//保存完毕后处理
if (OperationType.Equals("1.1") || OperationType.Equals("1.2") || OperationType.Equals("2"))
{
bResult = BillNew.AddNew();
}
else
{
bResult = BillNew.ModifyByID(DBUtility.ClsPub.isLong(subList[0].HItemID));
}
//提示
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 编辑时返回产品与器具清单信息
[Route("Gy_MateMould/GetMateMouldValue")]
[HttpGet]
public object GetMateMouldValue(int HItemID)
{
try
{
List columnNameList = new List();
//ds = oCN.RunProcReturn("select " +
// "a.HItemID,ltrim(a.HMaterID)+'-'+ltrim(a.HRelationID) 模具产品对应表代码,a.HUnitID,b.HName HRelationNameCol" +
// ",b.HNumber HRelationNumberCol,a.HMaterID HMaterIDCol,c.HNumber HMaterNumberCol,c.HName HMaterNameCol,c.HModel HMaterModelCol" +
// ",a.HRelationID HRelationIDCol,d.HNumber HUnitNumberCol,d.HName HUnitNameCol" +
// ",a.HUnitID HUnitIDCol" +
// ",a.HBeginDate HBeginDateCol,a.HEndDate HEndDateCol" +
// ",a.HRemark HRemarkCol " +
// " from Gy_MateMouldInfo a " +
// " left join h_v_Gy_Mould b on a.HRelationID = b.HItemID " +
// " left join Gy_Material c on a.HMaterID = c.HItemID " +
// " left join Gy_Unit d on a.HUnitID = d.HItemID where a.HItemID = " + HItemID, "Gy_MateMouldInfo");
ds = oCN.RunProcReturn("select " +
"a.HItemID,a.模具产品对应表代码,a.HUnitID,b.hitemid HMouldIDCol,b.HNumber 模具代码" +
",b.HName 模具名称,a.HMaterID HMaterIDCol,c.HNumber 物料代码,c.HName 物料名称,c.HModel 规格型号" +
",a.HRelationID HRelationIDCol,d.HNumber 单位代码,d.HName 单位名称" +
",a.HUnitID HUnitIDCol" +
",a.开始日期,a.结束日期" +
",a.备注 " +
" from h_v_Gy_MateMouldInfoList a " +
" left join h_v_Gy_Mould b on a.HRelationID = b.HItemID " +
" left join Gy_Material c on a.HMaterID = c.HItemID " +
" left join Gy_Unit d on a.HUnitID = d.HItemID where a.HItemID = " + HItemID, "Gy_MateMouldInfo");
if (ds == null || ds.Tables[0].Rows.Count == 0)
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "无列表信息!";
objJsonResult.data = null;
return objJsonResult;
}
else
{
//添加列名
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列对象的列名
}
objJsonResult.code = "1";
objJsonResult.count = 1;
objJsonResult.Message = "Sucess!";
objJsonResult.data = ds.Tables[0];
objJsonResult.list = columnNameList;
return objJsonResult;
}
}
catch (Exception e)
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "Exception!" + e.ToString();
objJsonResult.data = null;
return objJsonResult;
}
}
#endregion
///
/// 产品器具列表删除功能
///
///
[Route("DeltetGy_MateMould")]
[HttpGet]
public object DeltetGy_MateMould(string HItemID)
{
DataSet ds;
try
{
SQLHelper.ClsCN oCN = new SQLHelper.ClsCN();
if (string.IsNullOrWhiteSpace(HItemID))
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "HItemID为空!";
objJsonResult.data = null;
return objJsonResult;
}
oCN.BeginTran();//开始事务
ds = oCN.RunProcReturn("select * from Gy_MateMouldInfo where HItemID=" + HItemID, "Gy_MateMouldInfo");
if (ds == null || ds.Tables[0].Rows.Count == 0)
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "没有数据,无法删除!";
objJsonResult.data = null;
return objJsonResult; ;
}
oCN.RunProc("delete from Gy_MateMouldInfo where HItemID=" + HItemID);
oCN.Commit();//提交事务
objJsonResult.code = "0";
objJsonResult.count = 1;
objJsonResult.Message = "* 数据删除成功!";
objJsonResult.data = null;
return objJsonResult; ;
}
catch (Exception e)
{
objJsonResult.code = "0";
objJsonResult.count = 0;
objJsonResult.Message = "删除失败!" + e.ToString();
objJsonResult.data = null;
return objJsonResult;
}
}
}
}