WinFormTools/WinformGeneralDeveloperFrame/Form/Frmbuyer.cs

382 lines
14 KiB
C#
Raw Normal View History

2021-06-01 17:31:40 +08:00
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;
2021-06-15 18:18:49 +08:00
using CCWin.SkinClass;
using CCWin.SkinControl;
2021-06-01 17:31:40 +08:00
namespace MES.Form
{
2021-06-15 18:18:49 +08:00
public partial class Frmbuyer : FrmBaseForm
{
2021-06-01 17:31:40 +08:00
private Dictionary<string, string> fieldDictionary = new Dictionary<string, string>();
2021-06-15 18:18:49 +08:00
public Frmbuyer()
{
InitializeComponent();
}
private void Frmbuyer_Load(object sender, EventArgs e)
2021-06-01 17:31:40 +08:00
{
2021-06-15 18:18:49 +08:00
InitFrom(xtraTabControl1, grdList, grdListView, new LayoutControlGroup[] {layoutControlGroup1},
new buyerInfo(), gridControl1, new[] {"txtbuyercode", "txttotalprice"});
2021-06-01 17:31:40 +08:00
InitSearchDicData();
2021-06-05 17:08:16 +08:00
repositoryItemTextEditrequisitioncode.KeyDown += RepositoryItemTextEditrequisitioncode_KeyDown;
2021-06-08 08:31:02 +08:00
txtsupplierid.EditValueChanged += Txtsupplierid_EditValueChanged;
2021-06-15 18:18:49 +08:00
}
2021-06-01 17:31:40 +08:00
2021-06-08 08:31:02 +08:00
private void Txtsupplierid_EditValueChanged(object sender, EventArgs e)
{
2021-06-15 18:18:49 +08:00
using (var db = new MESDB())
2021-06-08 08:31:02 +08:00
{
supplierInfo supplier = db.supplierInfo.Find(txtsupplierid.EditValue);
txtsuppliercode.Text = supplier.suppliercode;
}
}
2021-06-05 17:08:16 +08:00
private void RepositoryItemTextEditrequisitioncode_KeyDown(object sender, KeyEventArgs e)
{
2021-06-08 08:31:02 +08:00
if (e.KeyCode == Keys.Tab)
2021-06-05 17:08:16 +08:00
{
using (var db = new MESDB())
{
2021-06-08 08:31:02 +08:00
string code = gridView1.EditingValue.ToString();
if (!string.IsNullOrEmpty(code))
{
requisitiondetailInfo requisitiondetail = db.requisitiondetailInfo
.Where(p => p.requisitiondetailcode.Equals(code)).FirstOrDefault();
if (requisitiondetail == null)
{
"单号不存在".ShowWarning();
}
else
{
gridView1.GetFocusedDataRow()["materialid"] = requisitiondetail.materialid;
gridView1.GetFocusedDataRow()["materialcode"] = requisitiondetail.materialcode;
gridView1.GetFocusedDataRow()["materialspec"] = requisitiondetail.materialspec;
gridView1.GetFocusedDataRow()["materialunit"] = requisitiondetail.materialunit;
gridView1.GetFocusedDataRow()["buyernumber"] = requisitiondetail.requisitionnumber;
gridView1.GetFocusedDataRow()["unitprice"] = requisitiondetail.unitprice;
gridView1.GetFocusedDataRow()["money"] = requisitiondetail.money;
gridView1.GetFocusedDataRow()["warehouse"] = requisitiondetail.warehouse;
}
}
2021-06-05 17:08:16 +08:00
}
}
}
2021-06-01 17:31:40 +08:00
2021-06-05 17:08:16 +08:00
/// <summary>
/// 数据源初始化
/// </summary>
/// <returns></returns>
private void Init()
2021-06-15 18:18:49 +08:00
{
txtsupplierid.Properties.DataSource = GetDataTableUtils.SqlTable("供应商");
repositoryItemtxtsupplierid.DataSource = GetDataTableUtils.SqlTable("物料");
txtcreatorId.Properties.DataSource = GetDataTableUtils.SqlTable("用户");
repositoryItemtxtcreatorId.DataSource = GetDataTableUtils.SqlTable("用户");
2021-06-08 08:31:02 +08:00
repositoryItemLookUpEditmaterialid.DataSource = GetDataTableUtils.SqlTable("物料");
repositoryItemLookUpEditmaterialunit.DataSource = GetDataTableUtils.SqlTable("计量单位");
repositoryItemLookUpEditwarehouse.DataSource = GetDataTableUtils.SqlTable("仓库");
}
2021-06-15 18:18:49 +08:00
2021-06-01 17:31:40 +08:00
/// <summary>
2021-06-15 18:18:49 +08:00
/// 搜索字段
/// </summary>
/// <returns></returns>
2021-06-01 17:31:40 +08:00
private void InitSearchDicData()
{
2021-06-15 18:18:49 +08:00
fieldDictionary.Add("id", "id");
fieldDictionary.Add("采购单号", "buyercode");
fieldDictionary.Add("采购日期", "buyerdate");
fieldDictionary.Add("供应商", "supplierid");
fieldDictionary.Add("供应商编码", "suppliercode");
fieldDictionary.Add("完货日期", "deliverdate");
fieldDictionary.Add("制单人", "creatorId");
fieldDictionary.Add("金额", "totalprice");
fieldDictionary.Add("备注", "remark");
2021-06-01 17:31:40 +08:00
}
2021-06-15 18:18:49 +08:00
public override void InitgrdListDataSource()
2021-06-01 17:31:40 +08:00
{
2021-06-15 18:18:49 +08:00
using (var con = new MESDB()) ///
2021-06-01 17:31:40 +08:00
{
2021-06-15 18:18:49 +08:00
grdList.DataSource = con.buyerInfo.ToList();
2021-06-01 17:31:40 +08:00
}
2021-06-15 18:18:49 +08:00
2021-06-01 17:31:40 +08:00
Init();
2021-06-15 18:18:49 +08:00
}
/// <summary>
/// 字段为空校验
/// </summary>
/// <returns></returns>
2021-06-01 17:31:40 +08:00
public override bool CheckInput()
{
2021-06-15 18:18:49 +08:00
if (string.IsNullOrEmpty(txtbuyerdate.ToString()))
{
"采购日期不能为空".ShowWarning();
txtbuyerdate.Focus();
return false;
}
if (string.IsNullOrEmpty(txtsupplierid.EditValue.ToString()))
{
"供应商不能为空".ShowWarning();
txtsupplierid.Focus();
return false;
}
if (string.IsNullOrEmpty(txtsuppliercode.EditValue.ToString()))
{
"供应商编码不能为空".ShowWarning();
txtsuppliercode.Focus();
return false;
}
if (string.IsNullOrEmpty(txtdeliverdate.EditValue.ToString()))
{
"完货日期不能为空".ShowWarning();
txtdeliverdate.Focus();
return false;
}
if (string.IsNullOrEmpty(txtcreatorId.EditValue.ToString()))
{
"制单人不能为空".ShowWarning();
txtcreatorId.Focus();
return false;
}
if (string.IsNullOrEmpty(txttotalprice.EditValue.ToString()))
{
"金额不能为空".ShowWarning();
txttotalprice.Focus();
return false;
}
return true;
2021-06-01 17:31:40 +08:00
}
2021-06-08 08:31:02 +08:00
public override void AddFunction()
{
gridControl1.DataSource = new List<buyerdetailInfo>().ToDataTable();
}
2021-06-01 17:31:40 +08:00
/// <summary>
2021-06-15 18:18:49 +08:00
/// 保存
/// </summary>
/// <returns></returns>
public override bool SaveFunction()
2021-06-01 17:31:40 +08:00
{
2021-06-15 18:18:49 +08:00
string code = "CG" + DateTime.Now.GetDateTimeCode();
DataTable dt = gridControl1.DataSource as DataTable;
2021-06-01 17:31:40 +08:00
try
{
2021-06-15 18:18:49 +08:00
buyerInfo info = (buyerInfo) this.ControlDataToModel(new buyerInfo());
2021-06-01 17:31:40 +08:00
using (var db = new MESDB())
{
2021-06-15 18:18:49 +08:00
using (var tran = db.Database.BeginTransaction())
{
try
{
Dictionary<string, List<buyerdetailInfo>> dic =
dt.GetDataTableData<buyerdetailInfo>();
if (info.id == 0) //新增
{
info.buyercode = code;
db.buyerInfo.Add(info);
db.SaveChanges();
txtid.Text = info.id.ToString();
txtbuyercode.Text = code;
if (dt != null)
{
List<buyerdetailInfo> detaiListAdd =
dic["Add"];
int num = 0;
detaiListAdd.ForEach(a =>
{
num++;
string codedetail = "SDD" + DateTime.Now.GetDateTimeCode() + num;
a.buyercode = info.buyercode;
a.buyerid = info.id;
a.buyerdetailcode = codedetail;
});
db.buyerdetailInfo.AddRange(detaiListAdd);
db.SaveChanges();
}
}
else //更新
{
db.Entry(info).State = EntityState.Modified;
db.SaveChanges();
if (dt != null)
{
List<buyerdetailInfo> detaiListAdd =
dic["Add"];
int num = 0;
detaiListAdd.ForEach(a =>
{
a.buyercode = info.buyercode;
a.buyerid = info.id;
num++;
string codedetail = "SDD" + DateTime.Now.GetDateTimeCode() + num;
a.buyerdetailcode = codedetail;
});
db.buyerdetailInfo.AddRange(detaiListAdd);
List<buyerdetailInfo> detaiListEdit =
dic["Edit"];
detaiListEdit.ForEach((a) =>
{
a.buyercode = info.buyercode;
db.Entry(a).State = EntityState.Modified;
});
List<buyerdetailInfo> detaiListDel =
dic["Del"];
detaiListDel.ForEach((a) => { db.Entry(a).State = EntityState.Deleted; });
db.SaveChanges();
}
}
tran.Commit();
}
catch (Exception ex)
{
tran.Rollback();
ex.Message.ShowError();
return false;
}
finally
{
tran.Dispose();
}
}
2021-06-01 17:31:40 +08:00
}
}
catch (Exception ex)
{
ex.Message.ShowError();
return false;
}
2021-06-15 18:18:49 +08:00
2021-06-01 17:31:40 +08:00
return true;
}
2021-06-15 18:18:49 +08:00
2021-06-01 17:31:40 +08:00
/// <summary>
2021-06-15 18:18:49 +08:00
/// 删除
/// </summary>
/// <returns></returns>
public override bool DelFunction()
2021-06-01 17:31:40 +08:00
{
try
{
2021-06-15 18:18:49 +08:00
buyerInfo info = (buyerInfo) this.ControlDataToModel(new buyerInfo());
2021-06-01 17:31:40 +08:00
using (var db = new MESDB())
{
2021-06-15 18:18:49 +08:00
db.Entry(info).State = EntityState.Deleted;
2021-06-01 17:31:40 +08:00
db.SaveChanges();
}
}
catch (Exception ex)
{
ex.Message.ShowError();
return false;
}
2021-06-15 18:18:49 +08:00
2021-06-01 17:31:40 +08:00
return true;
}
2021-06-15 18:18:49 +08:00
2021-06-01 17:31:40 +08:00
/// <summary>
2021-06-15 18:18:49 +08:00
/// 搜索
/// </summary>
/// <returns></returns>
2021-06-01 17:31:40 +08:00
public override void SearchFunction()
{
FrmSearch frm = new FrmSearch(fieldDictionary);
2021-06-15 18:18:49 +08:00
if (frm.ShowDialog() == DialogResult.OK)
2021-06-01 17:31:40 +08:00
{
string sql = frm.sql;
using (var db = new MESDB())
{
if (string.IsNullOrEmpty(sql))
{
2021-06-05 17:08:16 +08:00
grdList.DataSource = db.buyerInfo.SqlQuery("select * from buyer").ToList();
2021-06-01 17:31:40 +08:00
}
else
{
2021-06-05 17:08:16 +08:00
grdList.DataSource = db.buyerInfo.SqlQuery($"select * from buyer where {sql}").ToList();
2021-06-01 17:31:40 +08:00
}
}
}
}
2021-06-08 08:31:02 +08:00
2021-06-15 18:18:49 +08:00
public override void gridControlMouseDoubleClickFunction(object sender, EventArgs e)
{
buyerInfo info = grdListView.GetFocusedRow() as buyerInfo;
if (info != null)
{
using (var db = new MESDB())
{
gridControl1.DataSource = db.buyerdetailInfo.Where(p => p.buyerid == info.id).ToList().ToDataTable();
gridView1.BestFitColumns();
}
}
}
2021-06-08 08:31:02 +08:00
private void toolStripMenuItemAdd_Click(object sender, EventArgs e)
{
gridView1.AddNewRow();
}
private void toolStripMenuItemDel_Click(object sender, EventArgs e)
{
gridView1.DeleteRow(gridView1.FocusedRowHandle);
}
2021-06-15 18:18:49 +08:00
private void gridView1_ValidateRow(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e)
{
//gridControl1.RefreshDataSource();
//DataTable dt=gridControl1.DataSource as DataTable; ;
//decimal total = 0;
//foreach (DataRow row in dt.Rows)
//{
// total += row.ItemArray[10].ToDecimal(0);
//}
//txttotalprice.Text = total.ToString();
}
private void gridControl1_Validated(object sender, EventArgs e)
{
DataTable dt = gridControl1.DataSource as DataTable; ;
decimal total = 0;
foreach (DataRow row in dt.Rows)
{
total += row.ItemArray[10].ToDecimal(0);
}
txttotalprice.Text = total.ToString();
}
private void gridView1_ValidateRow_1(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e)
{
if (gridView1.GetFocusedDataRow()["money"].ToString().IsNullOrEmpty())
{
e.Valid = false;
e.ErrorText = "请输入请购明细单号";
}
}
2021-06-08 08:31:02 +08:00
}
2021-06-01 17:31:40 +08:00
}