151 lines
4.5 KiB
C#
151 lines
4.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using WinformGeneralDeveloperFrame;
|
|
using WinformGeneralDeveloperFrame.Commons;
|
|
using DevExpress.XtraLayout;
|
|
using MES.Entity;
|
|
using System.Data.Entity.Migrations;
|
|
using System.Data.Entity;
|
|
namespace MES.Form
|
|
{
|
|
public partial class FrmproductMaterialOutWarehouse : FrmBaseForm
|
|
{
|
|
private Dictionary<string, string> fieldDictionary = new Dictionary<string, string>();
|
|
public FrmproductMaterialOutWarehouse()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
private void FrmproductMaterialOutWarehouse_Load(object sender, EventArgs e)
|
|
{
|
|
InitFrom(xtraTabControl1,grdList,grdListView,new LayoutControlGroup[]{layoutControlGroup1},new productMaterialOutWarehouseInfo());
|
|
InitSearchDicData();
|
|
}
|
|
/// <summary>
|
|
/// 数据源初始化
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
private void Init()
|
|
{
|
|
txtdept.Properties.DataSource = GetDataTableUtils.SqlTable("部门");
|
|
repositoryItemTreeListtxtdept.DataSource= GetDataTableUtils.SqlTable("部门");
|
|
txtcreatorId.Properties.DataSource = GetDataTableUtils.SqlTable("用户");
|
|
repositoryItemtxtcreatorId.DataSource= GetDataTableUtils.SqlTable("用户");
|
|
}
|
|
/// <summary>
|
|
/// 搜索字段
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
private void InitSearchDicData()
|
|
{
|
|
fieldDictionary.Add("生产领料出库单号","code");
|
|
}
|
|
|
|
public override void InitgrdListDataSource()
|
|
{
|
|
using (var con=new MESDB())///
|
|
{
|
|
grdList.DataSource=con.productMaterialOutWarehouseInfo.ToList();
|
|
}
|
|
Init();
|
|
}
|
|
/// <summary>
|
|
/// 字段为空校验
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override bool CheckInput()
|
|
{
|
|
if(string.IsNullOrEmpty(txtdept.EditValue.ToString()))
|
|
{
|
|
"领料单位不能为空".ShowWarning();
|
|
txtdept.Focus();
|
|
return false;
|
|
}
|
|
if(string.IsNullOrEmpty(txtouttime.EditValue.ToString()))
|
|
{
|
|
"出库日期不能为空".ShowWarning();
|
|
txtouttime.Focus();
|
|
return false;
|
|
}
|
|
if(string.IsNullOrEmpty(txtcreatorId.EditValue.ToString()))
|
|
{
|
|
"制单人不能为空".ShowWarning();
|
|
txtcreatorId.Focus();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
/// <summary>
|
|
/// 保存
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override bool SaveFunction()
|
|
{
|
|
try
|
|
{
|
|
productMaterialOutWarehouseInfo info= (productMaterialOutWarehouseInfo)this.ControlDataToModel(new productMaterialOutWarehouseInfo());
|
|
using (var db = new MESDB())
|
|
{
|
|
db.productMaterialOutWarehouseInfo.AddOrUpdate(info);
|
|
db.SaveChanges();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ex.Message.ShowError();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override bool DelFunction()
|
|
{
|
|
try
|
|
{
|
|
productMaterialOutWarehouseInfo info = (productMaterialOutWarehouseInfo)this.ControlDataToModel(new productMaterialOutWarehouseInfo());
|
|
using (var db = new MESDB())
|
|
{
|
|
db.Entry(info).State=EntityState.Deleted;
|
|
db.SaveChanges();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ex.Message.ShowError();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
/// <summary>
|
|
/// 搜索
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override void SearchFunction()
|
|
{
|
|
FrmSearch frm = new FrmSearch(fieldDictionary);
|
|
if (frm.ShowDialog()==DialogResult.OK)
|
|
{
|
|
string sql = frm.sql;
|
|
using (var db = new MESDB())
|
|
{
|
|
if (string.IsNullOrEmpty(sql))
|
|
{
|
|
grdList.DataSource = db.productMaterialOutWarehouseInfo.SqlQuery("select * from productMaterialOutWarehouse").ToList();
|
|
}
|
|
else
|
|
{
|
|
grdList.DataSource = db.productMaterialOutWarehouseInfo.SqlQuery($"select * from productMaterialOutWarehouse where {sql}").ToList();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |