private void button1_Click(object sender, EventArgs e) { string strBeginTime = dateTimePicker1.Value.ToString("yyyy-MM-dd 00:00:00"); string strEndTime = dateTimePicker2.Value.ToString("yyyy-MM-dd 23:59:59"); string strProductName = txtProductName.Text.Trim();//去除空格,产品名称 string strSCSName = txtSCS.Text.Trim();//去除空格,生产商 string strWhereCondition = string.Format("(p_date>=#{0}# and p_date<=#{1}#) and p_sl1>0", strBeginTime, strEndTime); if (thisdevice != null && !string.IsNullOrEmpty(thisdevice.DeviceType)) { strWhereCondition = strWhereCondition + string.Format(" and DataType={0}", thisdevice.DeviceID); } if (!string.IsNullOrEmpty(strProductName)) { strWhereCondition = strWhereCondition + string.Format(" and p_cpmc like '%{0}%'",strProductName); } if (!string.IsNullOrEmpty(strSCSName)) { strWhereCondition = strWhereCondition + string.Format(" and p_zzs like '%{0}%'", strSCSName); } InventoryManager manager = new InventoryManager(); try { List<GouJinInfo> listData = manager.GetModelList(strWhereCondition); if (ListLoadingEvent != null) { ListLoadingEvent(listData, true, "获取记录列表成功!"); } } catch (Exception ex) { if (ListLoadingEvent != null) { ListLoadingEvent(null,false,ex.Message); } } }
/// <summary> /// 1.诊断试剂购进 /// </summary> private void ManagerZDSJGJ() { bool bolState = false; try { KPS.Model.GouJinInfo _Modelinfo = (KPS.Model.GouJinInfo)_control.GetSaveData(); _Modelinfo.DataType = thisdeviceinfo.DeviceID; KPS.BLL.GouJinManager gjmanager = new GouJinManager(); if (ModelData != null) { _Modelinfo.ID = ((GouJinInfo)ModelData).ID; bolState = gjmanager.Update(_Modelinfo); } else { bolState = gjmanager.Add(_Modelinfo); if (bolState) { //库存中新增购进记录 KPS.BLL.InventoryManager inventorymg = new InventoryManager(); inventorymg.Add(_Modelinfo); } } } catch (Exception ex) { bolState = false; } ShowMsgStateInfo(bolState, ModelData); }
/// <summary> /// 4.销售 /// </summary> private void ManagerXS() { bool bolState = false; try { KPS.Model.XiaoShouInfo _Modelinfo = (KPS.Model.XiaoShouInfo)_control.GetSaveData(); _Modelinfo.DataType = thisdeviceinfo.DeviceID; KPS.BLL.XiaoShouManager xiaoshoumanager = new XiaoShouManager(); if (ModelData != null) { _Modelinfo.ID = ((XiaoShouInfo)ModelData).ID; bolState = xiaoshoumanager.Update(_Modelinfo); ShowMsgStateInfo(bolState, ModelData); } else { KPS.BLL.InventoryManager InventoryMg = new InventoryManager(); InventoryUpState _stateinfo= InventoryMg.Sell(_Modelinfo); switch (_stateinfo) { case InventoryUpState.Succed: bolState = xiaoshoumanager.Add(_Modelinfo); ShowMsgStateInfo(bolState, ModelData); break; case InventoryUpState.ProductLacking: MessageBox.Show("库存不足,无法新增销售记录!(可通过新增购进记录来增加库存)"); break; case InventoryUpState.ProductNoExt: MessageBox.Show("未找到符合条件的产品购进记录!(请核对 产品名称+生产厂家+注册证号+批号 是否正确)"); break; case InventoryUpState.SysTemError: MessageBox.Show("处理失败!"); break; } } } catch (Exception ex) { ShowMsgStateInfo(bolState, ModelData); bolState = false; } }