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 LYFZ.Command;
using LYFZ.ComponentLibrary;
using System.Collections;
using LYFZ.Software.MainBusiness.DoorCityProcess;
namespace LYFZ.Software.MainBusiness.InitialSet
{
public partial class FrmPackagesGoodsSet : LYFZ.Software.UI.InitialSet.FrmPackagesGoodsSet
{
public FrmPackagesGoodsSet()
{
this.btnDown.Click += btnDown_Click;
this.btnUp.Click += btnUp_Click;
this.FormClosing += FrmPackagesGoodsSet_FormClosing;
}
LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
LYFZ.BLL.BLL_ErpProduct ptbll = new BLL.BLL_ErpProduct();
LYFZ.BLL.BLL_ErpPackages packages = new BLL.BLL_ErpPackages();
LYFZ.BLL.BLL_ErpTheScenery tsbll = new BLL.BLL_ErpTheScenery();
LYFZ.BLL.BLL_ErpSystemCategory scbll = new BLL.BLL_ErpSystemCategory();
LYFZ.BLL.BLL_ErpPackagesGiftMerchandise pkgmbll = new BLL.BLL_ErpPackagesGiftMerchandise();
#region 属性
///
/// 是否保存
///
public bool IsSaveed = false;
///
/// 套系编号
///
string StrPakPackagesID = "";
private string _strPakUnitPrice;
///
/// 套系价格
///
public string StrPakUnitPrice
{
get
{
//string[] strValue = _strPakUnitPrice.Split(':');
if (string.IsNullOrEmpty(_strPakUnitPrice))
{ return "0"; }
else
{ return _strPakUnitPrice; }
}
set
{
_strPakUnitPrice = value;
if (_strPakUnitPrice == "")
{ _strPakUnitPrice = "0"; }
this.lblPakUnitPrice.Text = "套系价格:" + _strPakUnitPrice;
}
}
private string _strPakIntoTheArchive;
///
/// 赠送张数
///
public string StrPakIntoTheArchive
{
get { return _strPakIntoTheArchive; }
set
{
_strPakIntoTheArchive = value;
this.lblPakIntoTheArchive.Text = "赠送张数:" + _strPakIntoTheArchive;
}
}
///
/// true为首次运行
///
private bool IsFirstLoad = true;
///
/// 套系设置是否有修改
///
private bool IsPackagesSet = false;
#endregion
///
/// 窗体加载
///
///
///
protected override void FrmPackagesGoodsSet_Shown(object sender, EventArgs e)
{
WaitForm wf = new WaitForm();
wf.ShowForm(this);
try
{
//获取绑定拍摄次数 获取绑定套系名称
LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_PackagesCategoryAndName(this.CtvPak_Name, StrParentCode: "AAAAAAB");
this.tabPage1.Parent = null;
this.tabPage2.Parent = null;
switch (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType())
{
case LYFZ.Software.MainBusiness.EnumPermissions.BusinessType.儿童版:
if (!LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.IsEnablePhotoEdition)
{
this.tabPage2.Parent = this.tab;
this.btnUp.Visible = true;
this.btnDown.Visible = true;
}
else
{
this.tabPage1.Parent = this.tab;
this.tabPage2.Parent = this.tab;
}
break;
case LYFZ.Software.MainBusiness.EnumPermissions.BusinessType.婚纱版:
this.tabPage1.Parent = this.tab;
break;
default:
this.tabPage1.Parent = this.tab;
this.tabPage2.Parent = this.tab;
break;
}
//清空
this.StrPakPackagesID = "";
this.StrPakUnitPrice = "0";
this.StrPakIntoTheArchive = "0/0";
this.dgv1.Rows.Clear();
this.dgv2.Rows.Clear();
this.dgv3.Rows.Clear();
this.dgv4.Rows.Clear();
#region 权限设置
this.btnSave1.Enabled = false;
this.btnProductSet.Enabled = false;
this.btnDelete1.Enabled = false;
this.btnDelete2.Enabled = false;
this.btnDelete3.Enabled = false;
if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.PackagesGoodsCompetence, CustomAttributes.OperatingAuthority.Add) || LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.PackagesGoodsCompetence, CustomAttributes.OperatingAuthority.Update))
{ this.btnSave1.Enabled = true; this.btnProductSet.Enabled = true; }
if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.PackagesGoodsCompetence, CustomAttributes.OperatingAuthority.Delete))
{
this.btnDelete1.Enabled = true;
this.btnDelete2.Enabled = true;
this.btnDelete3.Enabled = true;
}
#endregion
wf.CloseForm();
wf = null;
}
catch
{ wf.CloseForm(); wf = null; }
this.IsFirstLoad = false;
}
///
/// 选择套系名称获取商品详细信息
///
///
///
protected override void CtvPak_Name_ComboBoxTree_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
WaitForm wf = new WaitForm();
wf.ShowForm(this);
try
{
if (CtvPak_Name.Tag != null)
{
this.Bind();
this.GetCostSellingPrice();
}
wf.CloseForm();
wf = null;
}
catch
{
wf.CloseForm();
wf = null;
}
}
///
/// 获取初始数据
///
public void Bind()
{
this.dgv1.Rows.Clear();
this.dgv2.Rows.Clear();
this.dgv3.Rows.Clear();
this.dgv4.Rows.Clear();
//获取套系名称资料
DataTable dt = packages.GetList("Pak_Name='" + this.CtvPak_Name.Text.ToString() + "'").Tables[0];
if (dt.Rows.Count > 0)
{
this.StrPakPackagesID = dt.Rows[0]["Pak_PackagesID"].ToString();
this.StrPakUnitPrice = dt.Rows[0]["Pak_UnitPrice"].ToString();
this.StrPakIntoTheArchive = dt.Rows[0]["Pak_IntoTheArchive"].ToString() + "/" + dt.Rows[0]["Pak_IntoTheBook"].ToString();
#region 获取套系赠送商品
dt = pkgmbll.View_tb_ErpPackagesGiftMerchandise("Pgm_PackagesCode='" + this.StrPakPackagesID + "' and tb_ErpPackagesGiftMerchandise.Pgm_GiveType='0'").Tables[0];
if (dt.Rows.Count > 0)
{
for (int t = 0; t < dt.Rows.Count; t++)
{
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["ID"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_ProductNumber"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Prod_Name"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_Quantity"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Prod_CostPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Prod_SalesPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
this.dgv1.Rows.Add(dgvr);
}
}
#endregion
#region 获取服务内容
dt = pkgmbll.View_tb_ErpPackagesGiftMerchandise("Pgm_PackagesCode='" + this.StrPakPackagesID + "' and tb_ErpPackagesGiftMerchandise.Pgm_GiveType='1'").Tables[0];
if (dt.Rows.Count > 0)
{
for (int t = 0; t < dt.Rows.Count; t++)
{
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["ID"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_ProductNumber"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Prod_Name"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_Quantity"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Prod_CostPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Prod_SalesPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
this.dgv2.Rows.Add(dgvr);
}
}
#endregion
#region 获取婚纱景点设置
dt = pkgmbll.View_tb_ErpPackagesGiftMerchandise_tb_ErpTheScenery("Pgm_PackagesCode='" + this.StrPakPackagesID + "' and tb_ErpPackagesGiftMerchandise.Pgm_GiveType='2' and (tb_ErpPackagesGiftMerchandise.Pgm_GiveType!='1' or tb_ErpPackagesGiftMerchandise.Pgm_GiveType!='2' )").Tables[0];
if (dt.Rows.Count > 0)
{
for (int t = 0; t < dt.Rows.Count; t++)
{
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["ID"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_ProductNumber"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Tsc_Name"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_Quantity"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Tsc_CostPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Tsc_SalesPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
this.dgv3.Rows.Add(dgvr);
}
}
#endregion
#region 获取儿童景点设置
dt = pkgmbll.GetList(" Pgm_PackagesCode='" + this.StrPakPackagesID + "' and Pgm_GiveType='3' and (Pgm_GiveType!='1' or Pgm_GiveType!='2' )", " id asc").Tables[0];
if (dt.Rows.Count > 0)
{
for (int t = 0; t < dt.Rows.Count; t++)
{
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["ID"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_ProductNumber"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_ProductName"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[t]["Pgm_Quantity"].ToString().Trim();
dgvr.Cells.Add(cell);
this.dgv4.Rows.Add(dgvr);
}
}
#endregion
}
else
{
this.StrPakPackagesID = "";
this.StrPakUnitPrice = "0";
this.StrPakIntoTheArchive = "0/0";
if (string.IsNullOrEmpty(this.StrPakPackagesID))
{
MessageBoxCustom.Show(this.CtvPak_Name.Text.ToString() + " 此类型无套系名称!请添加套系名称");
this.CtvPak_Name.Text = "";
}
}
}
///
/// 套系赠送商品==删除
///
///
///
protected override void btnDelete1_Click(object sender, EventArgs e)
{
try
{
if (this.dgv1.Rows.Count > 0 && this.dgv1.SelectedRows.Count > 0)
{
if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
//删除
int Id = Convert.ToInt32(this.dgv1.CurrentRow.Cells["ID"].Value.ToString());
if (Id == 0)
{ this.dgv1.Rows.RemoveAt(this.dgv1.CurrentRow.Index); }
if (Id > 0)
{
if (pkgmbll.Delete(Id) == true) { }
this.dgv1.Rows.RemoveAt(this.dgv1.CurrentRow.Index);
}
this.GetCostSellingPrice();
}
}
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 套系赠送商品==商品工具箱
///
///
///
protected override void btnToolbox1_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.CtvPak_Name.Text))
{ MessageBoxCustom.Show("请选择套系名称!"); return; }
LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxSamllForm();
frm.LoadType = "套系包含商品";
frm.ShowDialog();
if (frm.IsSaveed)
{
for (int i = 0; i < frm.mlist.Count; i++)
{
bool IsFind = false;
for (int t = 0; t < this.dgv1.Rows.Count; t++)
{
if (this.dgv1.Rows[t].Cells["Pgm_ProductNumber"].Value.Equals(frm.mlist[i].Prod_Number))
{
this.dgv1.Rows[t].Cells["Pgm_Quantity"].Value = (Convert.ToInt32(this.dgv1.Rows[t].Cells["Pgm_Quantity"].Value) + 1).ToString();
IsFind = true; break;
}
}
if (!IsFind)
{
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = 0;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_Number;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_Name;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = "1";
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_CostPrice;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_SalesPrice;
dgvr.Cells.Add(cell);
this.dgv1.Rows.Add(dgvr);
}
}
}
this.GetCostSellingPrice();
}
///
/// 更改数量事件
///
///
///
protected override void dgv1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (this.dgv1.Rows.Count > 0)
{
if (!Command.Command_Validate.IsNumber(this.dgv1.CurrentRow.Cells["Pgm_Quantity"].Value.ToString()))
{
MessageBoxCustom.Show("只能输入纯数字!");
this.dgv1.CurrentRow.Cells["Pgm_Quantity"].Value = "1";
return;
}
this.GetCostSellingPrice();
}
}
///
/// 婚庆服务==删除
///
///
///
protected override void btnDelete2_Click(object sender, EventArgs e)
{
try
{
if (this.dgv2.Rows.Count > 0 && this.dgv2.SelectedRows.Count > 0)
{
if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
//删除
int Id = Convert.ToInt32(this.dgv2.CurrentRow.Cells["ID2"].Value.ToString());
if (Id == 0)
{ this.dgv2.Rows.RemoveAt(this.dgv2.CurrentRow.Index); }
else if (Id > 0)
{
if (pkgmbll.Delete(Id) == true)
{ this.dgv2.Rows.RemoveAt(this.dgv2.CurrentRow.Index); }
}
this.GetCostSellingPrice();
}
}
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 婚庆服务==商品工具箱
///
///
///
protected override void btnToolbox2_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.CtvPak_Name.Text))
{ MessageBoxCustom.Show("请选择套系名称!"); return; }
LYFZ.Software.MainBusiness.DoorCityProcess.SetSmallForm.ToolboxSamllForm frm = new DoorCityProcess.SetSmallForm.ToolboxSamllForm();
frm.LoadType = "婚庆报务";
frm.ShowDialog();
if (frm.IsSaveed)
{
for (int i = 0; i < frm.mlist.Count; i++)
{
bool IsFind = false;
for (int t = 0; t < this.dgv2.Rows.Count; t++)
{
if (this.dgv2.Rows[t].Cells["Pgm_ProductNumber2"].Value.ToString().Trim() == frm.mlist[i].Prod_Number.Trim())
{
this.dgv2.Rows[t].Cells["Pgm_Quantity2"].Value = (Convert.ToInt32(this.dgv2.Rows[t].Cells["Pgm_Quantity2"].Value) + 1);
IsFind = true;
}
}
if (!IsFind)
{
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = 0;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_Number;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_Name;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = "1";
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_CostPrice;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = frm.mlist[i].Prod_SalesPrice;
dgvr.Cells.Add(cell);
this.dgv2.Rows.Add(dgvr);
}
}
}
this.GetCostSellingPrice();
}
///
/// 更改数量事件
///
///
///
protected override void dgv2_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (this.dgv2.Rows.Count > 0)
{
if (!Command.Command_Validate.IsNumber(this.dgv2.CurrentRow.Cells["Pgm_Quantity2"].Value.ToString()))
{
MessageBoxCustom.Show("只能输入纯数字!");
this.dgv2.CurrentRow.Cells["Pgm_Quantity2"].Value = "1";
return;
}
this.GetCostSellingPrice();
}
}
///
/// 婚纱景点==删除
///
///
///
protected override void btnDelete3_Click(object sender, EventArgs e)
{
try
{
if (this.tab.SelectedTab.Name.Equals(this.tab.TabPages[0].Name))
{
if (this.dgv3.Rows.Count > 0)
{
if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
//删除
if (this.dgv3.SelectedRows.Count > 0)
{
int Id = Convert.ToInt32(this.dgv3.CurrentRow.Cells["ID3"].Value.ToString());
if (Id == 0)
{ this.dgv3.Rows.RemoveAt(this.dgv3.CurrentRow.Index); }
if (Id > 0)
{
if (pkgmbll.Delete(Id) == true)
{ this.dgv3.Rows.RemoveAt(this.dgv3.CurrentRow.Index); }
}
this.GetCostSellingPrice();
}
}
}
}
else if (this.tab.SelectedTab.Name.Equals(this.tab.TabPages[1].Name))
{
if (this.dgv4.Rows.Count > 0)
{
if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
//删除
if (this.dgv4.SelectedRows.Count > 0)
{
int Id = Convert.ToInt32(this.dgv4.CurrentRow.Cells["ID4"].Value.ToString());
if (Id == 0)
{ this.dgv4.Rows.RemoveAt(this.dgv4.CurrentRow.Index); }
if (Id > 0)
{
if (pkgmbll.Delete(Id) == true)
{ this.dgv4.Rows.RemoveAt(this.dgv4.CurrentRow.Index); }
}
this.GetCostSellingPrice();
}
}
}
}
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 婚纱景点==景点工具箱
///
///
///
protected override void btnToolbox3_Click(object sender, EventArgs e)
{
try
{
if (string.IsNullOrEmpty(this.CtvPak_Name.Text))
{ MessageBoxCustom.Show("请选择套系名称!"); return; }
LYFZ.Software.MainBusiness.InitialSet.PackagesGoods.FrmTheScenery set = new PackagesGoods.FrmTheScenery();
if (this.tab.SelectedTab.Name.Equals(this.tab.TabPages[0].Name))
{
#region
set.StrSightsType = "0";
set.ShowDialog();
ArrayList ListArray = set.ListArray;
if (ListArray.Count > 0)
{
for (int i = 0; i < ListArray.Count; i++)
{
bool IsFind = false;
for (int t = 0; t < this.dgv3.Rows.Count; t++)
{
if (this.dgv3.Rows[t].Cells["Pgm_ProductNumber3"].Value.ToString().Trim() == ListArray[i].ToString().Trim())
{ IsFind = true; break; }
}
if (!IsFind)
{
ListItem listitem = (ListItem)ListArray[i];
DataTable dt = tsbll.GetList("ID='" + listitem.StrValue + "'").Tables[0];
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = 0;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[0]["ID"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[0]["Tsc_Name"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = "1";
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[0]["Tsc_CostPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[0]["Tsc_SalesPrice"].ToString().Trim();
dgvr.Cells.Add(cell);
this.dgv3.Rows.Add(dgvr);
}
}
}
#endregion
}
else if (this.tab.SelectedTab.Name.Equals(this.tab.TabPages[1].Name))
{
#region
set.StrSightsType = "1";
set.ShowDialog();
ArrayList ListArray = set.ListArray;
if (ListArray.Count > 0)
{
for (int i = 0; i < ListArray.Count; i++)
{
bool IsFind = false;
for (int t = 0; t < this.dgv4.Rows.Count; t++)
{
if (this.dgv4.Rows[t].Cells["Pgm_ProductNumber4"].Value.ToString().Trim() == ListArray[i].ToString().Trim())
{ IsFind = true; break; }
}
if (!IsFind)
{
ListItem listitem = (ListItem)ListArray[i];
DataTable dt = tsbll.GetList("ID='" + listitem.StrValue + "'").Tables[0];
DataGridViewRow dgvr = new DataGridViewRow();
DataGridViewCell cell = null;
cell = new DataGridViewTextBoxCell();
cell.Value = 0;
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[0]["ID"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = dt.Rows[0]["Tsc_Name"].ToString().Trim();
dgvr.Cells.Add(cell);
cell = new DataGridViewTextBoxCell();
cell.Value = "1";
dgvr.Cells.Add(cell);
this.dgv4.Rows.Add(dgvr);
}
}
}
#endregion
}
this.GetCostSellingPrice();
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 更改数量事件
///
///
///
protected override void dgv3_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (this.dgv3.Rows.Count > 0)
{
if (!Command.Command_Validate.IsNumber(this.dgv3.CurrentRow.Cells["Pgm_Quantity3"].Value.ToString()))
{
MessageBoxCustom.Show("只能输入纯数字!");
this.dgv3.CurrentRow.Cells["Pgm_Quantity3"].Value = "1";
return;
}
this.GetCostSellingPrice();
}
}
///
/// 更改数量事件
///
///
///
protected override void dgv4_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
if (this.dgv4.Rows.Count > 0)
{
if (!Command.Command_Validate.IsNumber(this.dgv4.CurrentRow.Cells["Pgm_Quantity4"].Value.ToString()))
{
MessageBoxCustom.Show("只能输入纯数字!");
this.dgv4.CurrentRow.Cells["Pgm_Quantity4"].Value = "1";
return;
}
}
}
///
/// 选择版本获取商品成本价,卖价
///
///
///
protected override void tab_SelectedIndexChanged(object sender, EventArgs e)
{
if (!this.IsFirstLoad)
{
if (this.tab.SelectedTab != null)
{
if (this.tab.SelectedTab.Name.Trim() == "tabPage2")
{
this.btnDown.Visible = true;
this.btnUp.Visible = true;
}
else
{
this.btnDown.Visible = false;
this.btnUp.Visible = false;
}
this.GetCostSellingPrice();
}
}
}
///
/// 获取商品成本价,卖价
///
public void GetCostSellingPrice()
{
decimal Prod_CostPrice = 0;
decimal Prod_SalesPrice = 0;
decimal Prod_CostPrice2 = 0;
decimal Prod_SalesPrice2 = 0;
decimal Prod_CostPrice3 = 0;
decimal Prod_SalesPrice3 = 0;
decimal Prod_CostPrice4 = 0;
decimal Prod_SalesPrice4 = 0;
//decimal Prod_CostPrice5 = 0;
//decimal Prod_SalesPrice5 = 0;
//套系赠送商品
for (int i = 0; i < this.dgv1.Rows.Count; i++)
{
//成本价
Prod_CostPrice += Convert.ToDecimal(Convert.ToDecimal(this.dgv1.Rows[i].Cells["Prod_CostPrice"].Value) * Convert.ToDecimal(this.dgv1.Rows[i].Cells["Pgm_Quantity"].Value));
//卖价
Prod_SalesPrice += Convert.ToDecimal(Convert.ToDecimal(this.dgv1.Rows[i].Cells["Prod_SalesPrice"].Value) * Convert.ToDecimal(this.dgv1.Rows[i].Cells["Pgm_Quantity"].Value));
}
//服务
for (int i = 0; i < this.dgv2.Rows.Count; i++)
{
//成本价
Prod_CostPrice2 += Convert.ToDecimal(Convert.ToDecimal(this.dgv2.Rows[i].Cells["Prod_CostPrice2"].Value) * Convert.ToDecimal(this.dgv2.Rows[i].Cells["Pgm_Quantity2"].Value));
//卖价
Prod_SalesPrice2 += Convert.ToDecimal(Convert.ToDecimal(this.dgv2.Rows[i].Cells["Prod_SalesPrice2"].Value) * Convert.ToDecimal(this.dgv2.Rows[i].Cells["Pgm_Quantity2"].Value));
}
//婚纱景点设置
for (int i = 0; i < this.dgv3.Rows.Count; i++)
{
//成本价
Prod_CostPrice3 += Convert.ToDecimal(Convert.ToDecimal(this.dgv3.Rows[i].Cells["Prod_CostPrice3"].Value) * Convert.ToDecimal(this.dgv3.Rows[i].Cells["Pgm_Quantity3"].Value));
//卖价
Prod_SalesPrice3 += Convert.ToDecimal(Convert.ToDecimal(this.dgv3.Rows[i].Cells["Prod_SalesPrice3"].Value) * Convert.ToDecimal(this.dgv3.Rows[i].Cells["Pgm_Quantity3"].Value));
}
//儿童与婚纱区分版本
//版本判断
switch (LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetBusinessType())
{
case LYFZ.Software.MainBusiness.EnumPermissions.BusinessType.儿童版:
this.lblCBJ.Text = Convert.ToDecimal(Prod_CostPrice + Prod_CostPrice2).ToString("N2");
this.lblMJ.Text = Convert.ToDecimal(Prod_SalesPrice + Prod_SalesPrice2).ToString("N2");
break;
case LYFZ.Software.MainBusiness.EnumPermissions.BusinessType.婚纱版:
this.lblCBJ.Text = Convert.ToDecimal(Prod_CostPrice + Prod_CostPrice2 + Prod_CostPrice3).ToString("N2");
this.lblMJ.Text = Convert.ToDecimal(Prod_SalesPrice + Prod_SalesPrice2 + Prod_SalesPrice3).ToString("N2");
break;
default:
this.lblCBJ.Text = Convert.ToDecimal(Prod_CostPrice + Prod_CostPrice2 + Prod_CostPrice3 + Prod_CostPrice4).ToString("N2");
this.lblMJ.Text = Convert.ToDecimal(Prod_SalesPrice + Prod_SalesPrice2 + Prod_SalesPrice3 + Prod_SalesPrice4).ToString("N2");
break;
}
}
///
/// 保存
///
///
///
protected override void btnSave1_Click(object sender, EventArgs e)
{
try
{
#region 判断值是否为空
if (string.IsNullOrEmpty(this.CtvPak_Name.Text))
{
MessageBoxCustom.Show("请选择套系名称!");
return;
}
if (string.IsNullOrEmpty(this.StrPakPackagesID))
{
MessageBoxCustom.Show(this.CtvPak_Name.Text.ToString() + " 此类型无套系名称!请添加套系名称");
this.CtvPak_Name.Text = "";
return;
}
decimal CBJ = Convert.ToDecimal(this.lblCBJ.Text);
decimal UnitPrice = Convert.ToDecimal(this.StrPakUnitPrice);
if (UnitPrice <= CBJ)
{
if (MessageBoxCustom.Show("套系价格必须大于商品成本价!是否继续保存?", "温馨提示", MessageBoxButtons.YesNo) == DialogResult.No)
{ return; }
}
#endregion
#region 获取类别名称和类别编号
DataTable dtpackages = packages.GetList("Pak_PackagesID='" + this.StrPakPackagesID + "'").Tables[0];
string Pak_PackagesClass = "";
string Pak_Name = "";
if (dtpackages.Rows.Count > 0)
{
Pak_PackagesClass = dtpackages.Rows[0]["Pak_PackagesClass"].ToString();
Pak_Name = dtpackages.Rows[0]["Pak_Name"].ToString();
}
#endregion
LYFZ.Model.Model_ErpPackagesGiftMerchandise model = null;
List clist = new List();
#region 增加,修改赠送商品
if (this.dgv1.Rows.Count > 0)
{
for (int i = 0; i < this.dgv1.Rows.Count; i++)
{
//增加
int Id = Convert.ToInt32(this.dgv1.Rows[i].Cells["ID"].Value.ToString());
string Pgm_ProductNumber = this.dgv1.Rows[i].Cells["Pgm_ProductNumber"].Value.ToString();
string Pgm_ProductName = this.dgv1.Rows[i].Cells["Pgm_ProductName"].Value.ToString();
int Pgm_Quantity = Convert.ToInt32(this.dgv1.Rows[i].Cells["Pgm_Quantity"].Value.ToString());
if (Id == 0)
{
model = new Model.Model_ErpPackagesGiftMerchandise();
model.Pgm_GiveType = 0;
model.Pgm_ProductNumber = Pgm_ProductNumber;
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_StageNumber = "";
model.Pgm_ProductName = Pgm_ProductName;
model.Pgm_StageName = "";
model.Pgm_PackagesNumber = Pak_PackagesClass;
model.Pgm_PackagesName = Pak_Name;
model.Pgm_PackagesCode = this.StrPakPackagesID;
clist.Add(pkgmbll.GetAddCommandInfo(model));
}
//修改
if (Id > 0)
{
model = new Model.Model_ErpPackagesGiftMerchandise();
model = pkgmbll.GetModel(Id);
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_PackagesName = Pak_Name;
clist.Add(pkgmbll.GetUpdateCommandInfo(model));
}
}
}
#endregion
#region 增加,修改服务内容
if (this.dgv2.Rows.Count > 0)
{
for (int i = 0; i < this.dgv2.Rows.Count; i++)
{
//增加
int Id = Convert.ToInt32(this.dgv2.Rows[i].Cells["ID2"].Value.ToString());
string Pgm_ProductNumber = this.dgv2.Rows[i].Cells["Pgm_ProductNumber2"].Value.ToString();
string Pgm_ProductName = this.dgv2.Rows[i].Cells["Pgm_ProductName2"].Value.ToString();
int Pgm_Quantity = Convert.ToInt32(this.dgv2.Rows[i].Cells["Pgm_Quantity2"].Value.ToString());
if (Id == 0)
{
model = new Model.Model_ErpPackagesGiftMerchandise();
model.Pgm_GiveType = 1;
model.Pgm_ProductNumber = Pgm_ProductNumber;
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_PackagesNumber = Pak_PackagesClass;
model.Pgm_StageNumber = "";
model.Pgm_ProductName = Pgm_ProductName;
model.Pgm_PackagesName = Pak_Name;
model.Pgm_StageName = "";
model.Pgm_PackagesCode = this.StrPakPackagesID;
clist.Add(pkgmbll.GetAddCommandInfo(model));
}
//修改
else if (Id > 0)
{
model = pkgmbll.GetModel(Id);
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_PackagesName = Pak_Name;
clist.Add(pkgmbll.GetUpdateCommandInfo(model));
}
}
}
#endregion
#region 增加婚纱景点
if (this.dgv3.Rows.Count > 0)
{
for (int i = 0; i < this.dgv3.Rows.Count; i++)
{
//增加
int Id = Convert.ToInt32(this.dgv3.Rows[i].Cells["ID3"].Value.ToString());
string Pgm_ProductNumber = this.dgv3.Rows[i].Cells["Pgm_ProductNumber3"].Value.ToString();
string Pgm_ProductName = this.dgv3.Rows[i].Cells["Pgm_ProductName3"].Value.ToString();
int Pgm_Quantity = Convert.ToInt32(this.dgv3.Rows[i].Cells["Pgm_Quantity3"].Value.ToString());
if (Id == 0)
{
model = new Model.Model_ErpPackagesGiftMerchandise();
model.Pgm_GiveType = 2;
model.Pgm_ProductNumber = Pgm_ProductNumber;
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_PackagesNumber = Pak_PackagesClass;
model.Pgm_StageNumber = "";
model.Pgm_ProductName = Pgm_ProductName;
model.Pgm_PackagesName = Pak_Name;
model.Pgm_StageName = "";
model.Pgm_PackagesCode = this.StrPakPackagesID;
clist.Add(pkgmbll.GetAddCommandInfo(model));
}
//修改
else if (Id > 0)
{
model = pkgmbll.GetModel(Id);
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_PackagesName = Pak_Name;
clist.Add(pkgmbll.GetUpdateCommandInfo(model));
}
}
}
#endregion
#region 增加儿童景点
if (this.dgv4.Rows.Count > 0)
{
for (int i = 0; i < this.dgv4.Rows.Count; i++)
{
//增加
int Id = Convert.ToInt32(this.dgv4.Rows[i].Cells["ID4"].Value.ToString());
string Pgm_ProductNumber = this.dgv4.Rows[i].Cells["Pgm_ProductNumber4"].Value.ToString();
string Pgm_ProductName = this.dgv4.Rows[i].Cells["Pgm_ProductName4"].Value.ToString();
int Pgm_Quantity = Convert.ToInt32(this.dgv4.Rows[i].Cells["Pgm_Quantity4"].Value.ToString());
if (Id == 0)
{
model = new Model.Model_ErpPackagesGiftMerchandise();
model.Pgm_GiveType = 3;
model.Pgm_ProductNumber = Pgm_ProductNumber;
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_PackagesNumber = Pak_PackagesClass;
model.Pgm_StageNumber = "";
model.Pgm_ProductName = Pgm_ProductName;
model.Pgm_PackagesName = Pak_Name;
model.Pgm_StageName = "";
model.Pgm_PackagesCode = this.StrPakPackagesID;
clist.Add(pkgmbll.GetAddCommandInfo(model));
}
//修改
else if (Id > 0)
{
model = pkgmbll.GetModel(Id);
model.Pgm_Quantity = Pgm_Quantity;
model.Pgm_PackagesName = Pak_Name;
clist.Add(pkgmbll.GetUpdateCommandInfo(model));
}
}
}
#endregion
if (clist.Count > 0)
{
if (LYFZ.BLL.BaseBllOperate.ExecuteSqlTran(clist) > 0)
{
this.IsSaveed = true;
this.Bind();
this.GetCostSellingPrice();
MessageBoxCustom.Show("保存成功!");
}
else
{ MessageBoxCustom.Show("保存失败!"); }
}
}
catch (Exception ex)
{ MessageBoxCustom.Show(ex.Message); }
}
///
/// 设置套系
///
///
///
protected override void btnProductSet_Click(object sender, EventArgs e)
{
LYFZ.Software.MainBusiness.InitialSet.FrmPackagesSet set = new FrmPackagesSet();
set.ShowDialog();
if (set.IsSaveed)
{
this.CtvPak_Name.Text = "";
this.lblCBJ.Text = "0.00";
this.lblMJ.Text = "0.00";
this.IsPackagesSet = true;
this.FrmPackagesGoodsSet_Shown(sender, e);
}
}
///
/// 窗体大小发生变化
///
///
///
protected override void FrmPackagesGoodsSet_Resize(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Maximized)
{ this.panelEx2.Size = new Size(950, this.Height - 85); }
else
{ this.panelEx2.Size = new Size(950, 525); }
}
///
/// 拍摄次数下移
///
///
///
void btnDown_Click(object sender, EventArgs e)
{
if (this.dgv4.Rows.Count > 0)
{
//得到当前选中行的索引
int rowIndex = this.dgv4.SelectedRows[0].Index;
if (rowIndex == this.dgv4.Rows.Count - 1)
{ return; }
List list = new List();
//把当前选中行的数据存入list数组中
for (int i = 0; i < this.dgv4.Columns.Count; i++)
{ list.Add(this.dgv4.SelectedRows[0].Cells[i].Value.ToString()); }
for (int j = 0; j < this.dgv4.Columns.Count; j++)
{
if (j > 0)
{
this.dgv4.Rows[rowIndex].Cells[j].Value = this.dgv4.Rows[rowIndex + 1].Cells[j].Value;
this.dgv4.Rows[rowIndex + 1].Cells[j].Value = list[j].ToString();
}
}
int dk = this.dgv4.CurrentRow.Index;
this.dgv4.Rows[rowIndex].Selected = false;
this.dgv4.Rows[rowIndex + 1].Selected = true;
}
}
///
/// 拍摄次数上移
///
///
///
void btnUp_Click(object sender, EventArgs e)
{
if (this.dgv4.Rows.Count > 0)
{
//得到当前选中行的索引
int rowIndex = this.dgv4.SelectedRows[0].Index;
if (rowIndex == 0)
{ return; }
List list = new List();
//把当前选中行的数据存入list数组中
for (int i = 0; i < this.dgv4.Columns.Count; i++)
{ list.Add(this.dgv4.SelectedRows[0].Cells[i].Value.ToString()); }
for (int j = 0; j < this.dgv4.Columns.Count; j++)
{
if (j > 0)
{
this.dgv4.Rows[rowIndex].Cells[j].Value = this.dgv4.Rows[rowIndex - 1].Cells[j].Value;
this.dgv4.Rows[rowIndex - 1].Cells[j].Value = list[j].ToString();
}
}
this.dgv4.Rows[rowIndex].Selected = false;
this.dgv4.Rows[rowIndex - 1].Selected = true;
}
}
///
/// 窗体关闭前
///
///
///
void FrmPackagesGoodsSet_FormClosing(object sender, FormClosingEventArgs e)
{
if (!this.IsSaveed)
{
if (this.IsPackagesSet)
{ this.IsSaveed = this.IsPackagesSet; }
}
}
}
}