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.

229 lines
8.4 KiB

1 year ago
using CK.SCP.Models;
using CK.SCP.Models.ExchangeCenterTables;
using CK.SCP.Utils;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity.Migrations;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CK.SCP.Controller
{
public class UN_EC_CONTROLLER_PO
{
public static void Get_TED_PO_MSTR_List(TED_PO_MSTR p_entity, Action<ResultObject<IQueryable<TED_PO_MSTR>>> p_action)
{
ResultObject<IQueryable<TED_PO_MSTR>> _ret = new ResultObject<IQueryable<TED_PO_MSTR>>();
try
{
using (var db = EntitiesFactory.CreateExchangeCenterInstance())
{
IQueryable<TED_PO_MSTR> q = db.TED_PO_MSTR;
if (!string.IsNullOrEmpty(p_entity.PurchaseOrder))
{
q = q.Where(p => p.PurchaseOrder.Contains(p_entity.PurchaseOrder));
}
if (!string.IsNullOrEmpty(p_entity.ModeType))
{
q = q.Where(p => p.ModeType.Contains(p_entity.ModeType));
}
if (!string.IsNullOrEmpty(p_entity.Supplier))
{
q = q.Where(p => p.Supplier.Contains(p_entity.Supplier));
}
if (!string.IsNullOrEmpty(p_entity.Contact))
{
q = q.Where(p => p.Contact.Contains(p_entity.Contact));
}
if (!string.IsNullOrEmpty(p_entity.ShipTo))
{
q = q.Where(p => p.ShipTo.Contains(p_entity.ShipTo));
}
if (!string.IsNullOrEmpty(p_entity.MadeIn))
{
q = q.Where(p => p.MadeIn.Contains(p_entity.MadeIn));
}
if (p_entity.Confirm != false)
{
q = q.Where(p => p.Confirm == p_entity.Confirm);
}
if (!string.IsNullOrEmpty(p_entity.Buyer))
{
q = q.Where(p => p.Buyer.Contains(p_entity.Buyer));
}
if (!string.IsNullOrEmpty(p_entity.BuyerPhone))
{
q = q.Where(p => p.BuyerPhone.Contains(p_entity.BuyerPhone));
}
if (p_entity.Status != 0)
{
q = q.Where(p => p.Status == p_entity.Status);
}
if (p_entity.ScheduledOrder != false)
{
q = q.Where(p => p.ScheduledOrder == p_entity.ScheduledOrder);
}
if (p_entity.UID != 0)
{
q = q.Where(p => p.UID == p_entity.UID);
}
if (!string.IsNullOrEmpty(p_entity.CreateUser))
{
q = q.Where(p => p.CreateUser.Contains(p_entity.CreateUser));
}
if (!string.IsNullOrEmpty(p_entity.Remark))
{
q = q.Where(p => p.Remark.Contains(p_entity.Remark));
}
if (!string.IsNullOrEmpty(p_entity.CommandType))
{
q = q.Where(p => p.CommandType.Contains(p_entity.CommandType));
}
if (!string.IsNullOrEmpty(p_entity.Domain))
{
q = q.Where(p => p.Domain.Contains(p_entity.Domain));
}
if (!string.IsNullOrEmpty(p_entity.Site))
{
q = q.Where(p => p.Site.Contains(p_entity.Site));
}
if (!string.IsNullOrEmpty(p_entity.Pricelist))
{
q = q.Where(p => p.Pricelist.Contains(p_entity.Pricelist));
}
if (!string.IsNullOrEmpty(p_entity.Taxclass))
{
q = q.Where(p => p.Taxclass.Contains(p_entity.Taxclass));
}
_ret.Result = q;
_ret.State = ReturnStatus.Succeed;
p_action(_ret);
}
}
catch (Exception e)
{
_ret.State = ReturnStatus.Failed;
_ret.ErrorList.Add(e);
LogHelper.Writlog(LogHelper.LogType.Error, typeof(TED_PO_MSTR), "Get_TED_PO_MSTR_List", e.Message);
throw e;
}
}
public static DataTable Get_TED_PO_MSTR_List(string p_tableName, string p_TaskID)
{
DataTable dt = new DataTable(); ;
var dbSetting = GlobalConfig.ExchangeCenterDB;
try
{
var strConn = EntitiesFactory.GetEfConnectionString(dbSetting);
SqlConnection conn = new System.Data.SqlClient.SqlConnection();
//conn.ConnectionString = db.Database.Connection.ConnectionString;
conn.ConnectionString = strConn;
if (conn.State != ConnectionState.Open)
{
conn.Open();
}
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
string _sql = string.Format("select * from {0} where TaskID='{1}'", p_tableName, p_TaskID);
cmd.CommandText = _sql;
SqlDataAdapter adapter = new SqlDataAdapter(cmd);
adapter.Fill(dt);
}
catch (SqlException ex)
{
throw new Exception($"系统无法连接到数据库:{dbSetting},请检查配置的服务器,数据库,用户名和密码等信息是否正确。{Environment.NewLine}{ex}");
}
return dt;
}
public static ResultObject<bool> Save_TED_PO_MSTR(List<long> p_listUid, EnumTaskState p_state)
{
ResultObject<bool> _ret = new ResultObject<bool>();
try
{
using (var db = EntitiesFactory.CreateExchangeCenterInstance())
{
var _lst = db.TED_PO_MSTR.Where(p => p_listUid.Contains(p.UID)).ToList();
foreach (var itm in _lst)
{
db.TED_PO_MSTR.AddOrUpdate(itm);
}
if (db.SaveChanges() != -1)
{
_ret.State = ReturnStatus.Succeed;
_ret.Result = true;
}
else
{
_ret.State = ReturnStatus.Failed;
_ret.Result = false;
}
}
}
catch (Exception e)
{
_ret.State = ReturnStatus.Failed;
LogHelper.Writlog(LogHelper.LogType.Error, typeof(TED_ASN_MSTR), "Save_TED_PO_MSTR", e.Message);
_ret.Result = false;
_ret.ErrorList.Add(e);
throw e;
}
return _ret;
}
public ResultObject<bool> Del_TED_PO_MSTR(List<TED_PO_MSTR> p_entitys)
{
ResultObject<bool> _ret = new ResultObject<bool>();
try
{
using (var db = EntitiesFactory.CreateExchangeCenterInstance())
{
foreach (var itm in p_entitys)
{
db.TED_PO_MSTR.Remove(itm);
}
if (db.SaveChanges() != -1)
{
_ret.State = ReturnStatus.Succeed;
_ret.Result = true;
}
else
{
_ret.State = ReturnStatus.Failed;
_ret.Result = false;
}
}
}
catch (Exception e)
{
_ret.State = ReturnStatus.Failed;
_ret.Result = false;
_ret.ErrorList.Add(e);
LogHelper.Writlog(LogHelper.LogType.Error, typeof(TED_PO_MSTR), "Del_TED_PO_MSTR", e.Message); throw e;
}
return _ret;
}
}
}