| | |
| | | |
| | | |
| | | |
| | | //æ¡ç çææ¨¡åè°ç¨ æ¡ç æå°åï¼æ¡ç æå°æ¬¡æ°æ§å¶ï¼æ¯å¦è¶
è¿å
è®¸å¯æå°æ¬¡æ°ï¼ |
| | | public bool Set_CheckPrintQty_SD(Int64 HInterID, long PrintQty, ref string sReturn) |
| | | { |
| | | DataSet DS; |
| | | string sBarCode = ""; |
| | | DS = oCn.RunProcReturn("select stuff((select ','+HBarCode from Gy_BarCodeBill with(nolock) where HPrintQty >=" + PrintQty + " and HBarCodeType = 'å¯ä¸æ¡ç ' and HInterID = " + HInterID + " for xml path('')),1,1,'')", "Gy_BarCodeBill"); |
| | | if (DS == null || DS.Tables[0].Rows.Count == 0) |
| | | { |
| | | sReturn = "æ£å¸¸ï¼"; |
| | | return false; |
| | | } |
| | | else |
| | | { |
| | | sBarCode = DBUtility.ClsPub.isStrNull(DS.Tables[0].Rows[0][0]); |
| | | if (sBarCode == "") |
| | | { |
| | | sReturn = "æ£å¸¸ï¼"; |
| | | return false; |
| | | } |
| | | else |
| | | { |
| | | sReturn = "æ¡ç ç¼å·ï¼" + DBUtility.ClsPub.isStrNull(DS.Tables[0].Rows[0][0]) + "ï¼å·²æå°" + PrintQty + " 次ï¼ä¸å
è®¸åæ¬¡é¢è§æå°ï¼"; |
| | | return true; |
| | | } |
| | | } |
| | | } |
| | | |
| | | //æ¡ç æ¡£æ¡å表模åè°ç¨ æ¡ç æå°åï¼æ¡ç æå°æ¬¡æ°æ§å¶ï¼æ¯å¦è¶
è¿å
è®¸å¯æå°æ¬¡æ°ï¼ |
| | | public bool Set_CheckPrintQty(string sBarCodeItemID,long PrintQty, ref string sReturn) |
| | | { |
| | | DataSet DS; |
| | | string sBarCode = ""; |
| | | DS = oCn.RunProcReturn("select stuff((select ','+HBarCode from Gy_BarCodeBill with(nolock) where HPrintQty >=" + PrintQty + " and HBarCodeType = 'å¯ä¸æ¡ç ' and HItemID in (" + sBarCodeItemID + ") for xml path('')),1,1,'')", "Gy_BarCodeBill"); |
| | | if (DS == null || DS.Tables[0].Rows.Count == 0) |
| | | { |
| | | sReturn = "æ£å¸¸ï¼"; |
| | | return false; |
| | | } |
| | | else |
| | | { |
| | | sBarCode = DBUtility.ClsPub.isStrNull(DS.Tables[0].Rows[0][0]); |
| | | if (sBarCode == "") |
| | | { |
| | | sReturn = "æ£å¸¸ï¼"; |
| | | return false; |
| | | } |
| | | else |
| | | { |
| | | sReturn = "æ¡ç ç¼å·ï¼" + DBUtility.ClsPub.isStrNull(DS.Tables[0].Rows[0][0]) + "ï¼å·²æå°" + PrintQty + " 次ï¼ä¸å
è®¸åæ¬¡é¢è§æå°ï¼"; |
| | | return true; |
| | | } |
| | | } |
| | | } |
| | | |
| | | //æ¡ç çææ¨¡åè°ç¨ æ¡ç æå°åï¼æ´æ°æ¡ç æå°æ¬¡æ° |
| | | public bool Set_UpdatePrintQty_SD(Int64 HInterID) |
| | | { |
| | | try |
| | | { |
| | | oCn.BeginTran(); |
| | | //æ´æ° æ¡ç æå°æ¬¡æ° |
| | | oCn.RunProc("update Gy_BarCodeBill set HPrintQty=isnull(HPrintQty,0)+1 where HInterID = " + HInterID, ref DBUtility.ClsPub.sExeReturnInfo); |
| | | oCn.Commit(); |
| | | return true; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | oCn.RollBack(); |
| | | throw (e); |
| | | } |
| | | } |
| | | |
| | | //æ¡ç æ¡£æ¡å表模åè°ç¨ æ¡ç æå°åï¼æ´æ°æ¡ç æå°æ¬¡æ° |
| | | public bool Set_UpdatePrintQty(string sBarCodeItemID) |
| | | { |
| | | try |
| | | { |
| | | oCn.BeginTran(); |
| | | //æ´æ° æ¡ç æå°æ¬¡æ° |
| | | oCn.RunProc("update Gy_BarCodeBill set HPrintQty=isnull(HPrintQty,0)+1 where HItemID in (" + sBarCodeItemID + ")", ref DBUtility.ClsPub.sExeReturnInfo); |
| | | oCn.Commit(); |
| | | return true; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | oCn.RollBack(); |
| | | throw (e); |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | |
| | | { |
| | | omodel.BarCode_SourceQtyCtl = ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HValue"]); |
| | | } |
| | | //å
许æ¡ç æå°æ¬¡æ°ï¼1ã2ã3.....ï¼ |
| | | if (ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HKey"]) == "BarCode_PrintQty") |
| | | { |
| | | omodel.BarCode_PrintQty = ClsPub.isLong(DsSub.Tables[0].Rows[i]["HValue"]); |
| | | } |
| | | //æ¡ç æå°æ¬¡æ°æ§å¶ï¼æ¯å¦åªå
许æå°ä¸æ¬¡æ§å¶ï¼Y åªå
许æå°ä¸æ¬¡ï¼ |
| | | if (ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HKey"]) == "BarCode_PrintQtyCtl") |
| | | { |
| | | omodel.BarCode_PrintQtyCtl = ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HValue"]); |
| | | } |
| | | //æ¡ç æå°æ¬¡æ°æ´æ°(æå°æ¡ç æ¶ï¼æ¯å¦æ´æ°æ¡ç æå°æ¬¡æ°ï¼Y æ´æ°) |
| | | if (ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HKey"]) == "BarCode_UpdatePrintQtyCtl") |
| | | { |
| | | omodel.BarCode_UpdatePrintQtyCtl = ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HValue"]); |
| | | } |
| | | |
| | | //-======è¿ç«å |
| | | //å
è¿å
åº |
| | |
| | | public string WMS_MouldManagerCtl; //æ¯å¦å¯ç¨å¨å
·ç®¡ç(Y,N) |
| | | |
| | | //æ¡é¢æ¡ç 模å |
| | | public string BarCode_SourceQtyCtl;//ææºåçææ¡ç ï¼çææ¡ç æ°éå¯å¦è¶
æºåæ°éæ§å¶ |
| | | public string BarCode_SourceQtyCtl; //ææºåçææ¡ç ï¼çææ¡ç æ°éå¯å¦è¶
æºåæ°éæ§å¶ |
| | | public long BarCode_PrintQty; //å
许æ¡ç æå°æ¬¡æ°ï¼1ã2ã3.....ï¼ |
| | | public string BarCode_PrintQtyCtl; //æ¡ç æå°æ¬¡æ°æ§å¶ï¼æ¯å¦åªå
许æå°ä¸æ¬¡æ§å¶ï¼Y åªå
许æå°ä¸æ¬¡ï¼ |
| | | public string BarCode_UpdatePrintQtyCtl;//æ¡ç æå°æ¬¡æ°æ´æ°(æå°æ¡ç æ¶ï¼æ¯å¦æ´æ°æ¡ç æå°æ¬¡æ°ï¼Y æ´æ°) |
| | | |
| | | |
| | | //è¿ç«å |
| | |
| | | public string ERPMode = ""; //ERP模å¼ï¼WISEãCLOUDï¼ |
| | | public string CampanyName = ""; //客æ·å®å¶ååç§° |
| | | public string SourceQtyCtl = ""; //è¶
æºåæ°éæ§å¶ |
| | | //------------------------------------------------------------------------- |
| | | public long PrintQty = 0; //å
许æ¡ç æå°æ¬¡æ° |
| | | public string PrintQtyCtl = ""; //æ¡ç æå°æ¬¡æ°æ§å¶ |
| | | public string UpdatePrintQtyCtl = ""; //æ¡ç æå°æ¬¡æ°æ´æ° |
| | | //------------------------------------------------------------------------- |
| | | #region åºå®ä»£ç |
| | | |
| | | //æ¸
空çé¢ |
| | |
| | | ERPMode = oSystemParameter.omodel.WMS_WMSStockCtl_ERPMode; |
| | | CampanyName = oSystemParameter.omodel.WMS_CampanyName; |
| | | SourceQtyCtl = oSystemParameter.omodel.BarCode_SourceQtyCtl; |
| | | PrintQty = oSystemParameter.omodel.BarCode_PrintQty; |
| | | PrintQtyCtl = oSystemParameter.omodel.BarCode_PrintQtyCtl; |
| | | UpdatePrintQtyCtl = oSystemParameter.omodel.BarCode_UpdatePrintQtyCtl; |
| | | } |
| | | |
| | | cmbHWorksNumber.Items.Clear(); |
| | |
| | | #region //æå°è®¾ç½® |
| | | |
| | | GridppReport Report; |
| | | int CurRows = 0; |
| | | string sBarCodeItemID = ""; //æ¡ç èªå¢å |
| | | |
| | | //é¢è§ |
| | | int CurRows = 0; |
| | | private void yl_Click(object sender, EventArgs e) |
| | | { |
| | | //夿æ¯å¦å·²ç»çææ¡ç |
| | |
| | | } |
| | | } |
| | | |
| | | //æå°å夿æ¡ç æ¯å¦å·²æå°è¿ |
| | | //æå° |
| | | private void dy_Click(object sender, EventArgs e) |
| | | { |
| | | //夿æ¯å¦å·²ç»çææ¡ç |
| | | if (DBUtility.ClsPub.isStrNull(grdSub.Rows[0].Cells[HTMCol].Value) == "") |
| | | { |
| | | MessageBox.Show("æ¡ç æªçæï¼è¯·å
çææ¡ç ååæå°ï¼"); |
| | | return; |
| | | } |
| | | |
| | | //æå°å夿æ¡ç æ¯å¦å·²æå°è¿ |
| | | if (ReportPrintBegin()) |
| | | { |
| | | return; |
| | | } |
| | | |
| | | //éæ©æå°æ¨¡æ¿ |
| | | BLL.Gy_OpenTmp oFrm = new BLL.Gy_OpenTmp(); |
| | | oFrm.sBillName = ModName; |
| | | oFrm.sBillModel = ModCaption; |
| | | oFrm.ShowDialog(); |
| | | if (oFrm.OKTag == Pub_Class.ClsPub.Enum_OKTag.OKTag_OK) |
| | | { |
| | | //循ç¯éä¸è¡ |
| | | Sub_SetReport(oFrm.sOpenTmp); |
| | | Report.Print(true); |
| | | Thread.Sleep(1000); |
| | | } |
| | | } |
| | | |
| | | ////æå°å夿æ¡ç æ¯å¦å·²æå°è¿ |
| | | //private bool ReportPrintBegin() |
| | | //{ |
| | | // string sRelQty = ""; |
| | | |
| | | // if (oBar.Set_BPrintQty(DBUtility.ClsPub.isStrNull(grdSub.Rows[0].Cells[HTMCol].Value), ref sRelQty)) |
| | | // { |
| | | // MessageBox.Show("æ¡ç å·²ç»æå°è¿ï¼ä¸å¯é夿å°ï¼"); |
| | | // return true; |
| | | // } |
| | | // else |
| | | // { |
| | | // return false; |
| | | // } |
| | | //} |
| | | |
| | | //æå°å夿æ¡ç æ¯å¦è¶
è¿å
è®¸å¯æå°æ¬¡æ° |
| | | private bool ReportPrintBegin() |
| | | { |
| | | string sRelQty = ""; |
| | | |
| | | if (oBar.Set_BPrintQty(DBUtility.ClsPub.isStrNull(grdSub.Rows[0].Cells[HTMCol].Value), ref sRelQty)) |
| | | string sHRemark = ""; |
| | | if (PrintQtyCtl == "Y") |
| | | { |
| | | MessageBox.Show("æ¡ç å·²ç»æå°è¿ï¼ä¸å¯é夿å°ï¼"); |
| | | return true; |
| | | if (oBar.Set_CheckPrintQty_SD(HInterID, PrintQty, ref sHRemark)) |
| | | { |
| | | MessageBox.Show(sHRemark); |
| | | return true; |
| | | } |
| | | return false; |
| | | } |
| | | else |
| | | { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | //æå°ç»æååå¡«æ¡ç æå°æ¬¡æ° |
| | | private void ReportPrintEnd() |
| | | { |
| | | try |
| | | { |
| | | oCn.RunProc("update Gy_BarCodeBill set HPrintQty=isnull(HPrintQty,0)+1 where HInterID=" + HInterID, ref DBUtility.ClsPub.sExeReturnInfo); |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | MessageBox.Show("æå°å¤±è´¥!æå°ç»æ ï¼" + e.Message); |
| | | } |
| | | } |
| | | |
| | |
| | | for (int i = 0; i < grdList.Rows.Count; i++) |
| | | { |
| | | grdList.Rows[i].Cells[0].Value = "*"; |
| | | } |
| | | // |
| | | Report = new GridppReport(); |
| | | Report.LoadFromFile(DBUtility.ClsPub.AppPath + @"\" + sOpenTmp + ".grf"); //here . |
| | | Report.BeforePostRecord += new _IGridppReportEvents_BeforePostRecordEventHandler(ReportBeforePostRecord); |
| | | Report.FetchRecord += new _IGridppReportEvents_FetchRecordEventHandler(ReportFetchRecordByDataTable); |
| | | Report.PrintEnd += new _IGridppReportEvents_PrintEndEventHandler(ReportPrintEnd); |
| | | } |
| | | |
| | | |
| | | private void Sub_SetReportView(string sOpenTmp) |
| | | { |
| | | //å¤æè¡æ° |
| | | for (int i = 0; i < grdList.Rows.Count; i++) |
| | | { |
| | | grdList.Rows[i].Cells[0].Value = ""; |
| | | } |
| | | for (int i = 0; i < grdList.SelectedRows.Count; i++) |
| | | { |
| | | grdList.Rows[grdList.SelectedRows[i].Index].Cells[0].Value = "*"; |
| | | } |
| | | // |
| | | Report = new GridppReport(); |
| | |
| | | } |
| | | } |
| | | |
| | | private Int32 Fun_GetCol(string sCol) |
| | | { |
| | | return DBUtility.Xt_BaseBillFun.Fun_GetCol(sCol, grdList); |
| | | } |
| | | |
| | | //å¡«å
¥åæ®è¡¨ä½ä¿¡æ¯ |
| | | private void ReportFetchRecordByDataTable() |
| | | { |
| | | try |
| | |
| | | } |
| | | } |
| | | |
| | | private void dy_Click(object sender, EventArgs e) |
| | | ////æå°ç»æååå¡«æ¡ç æå°æ¬¡æ° |
| | | //private void ReportPrintEnd() |
| | | //{ |
| | | // try |
| | | // { |
| | | // oCn.RunProc("update Gy_BarCodeBill set HPrintQty=isnull(HPrintQty,0)+1 where HInterID=" + HInterID, ref DBUtility.ClsPub.sExeReturnInfo); |
| | | // } |
| | | // catch (Exception e) |
| | | // { |
| | | // MessageBox.Show("æå°å¤±è´¥!æå°ç»æ ï¼" + e.Message); |
| | | // } |
| | | //} |
| | | |
| | | //æå°ç»æååå¡«æ¡ç æå°æ¬¡æ° |
| | | private void ReportPrintEnd() |
| | | { |
| | | if (UpdatePrintQtyCtl == "Y") |
| | | { |
| | | oBar.Set_UpdatePrintQty_SD(HInterID); |
| | | } |
| | | } |
| | | |
| | | //è¯æå° |
| | | private void sdy_Click(object sender, EventArgs e) |
| | | { |
| | | //夿æ¯å¦å·²ç»çææ¡ç |
| | | if (DBUtility.ClsPub.isStrNull(grdSub.Rows[0].Cells[HTMCol].Value) == "") |
| | | { |
| | | MessageBox.Show("æ¡ç æªçæï¼è¯·å
çææ¡ç ååæå°ï¼"); |
| | | MessageBox.Show("æ¡ç æªçæï¼è¯·å
çææ¡ç ååé¢è§ï¼"); |
| | | return; |
| | | } |
| | | |
| | | //æå°å夿æ¡ç æ¯å¦å·²æå°è¿ |
| | | if (ReportPrintBegin()) |
| | | if (ReportPrintBegin_SDY()) |
| | | { |
| | | return; |
| | | } |
| | |
| | | oFrm.ShowDialog(); |
| | | if (oFrm.OKTag == Pub_Class.ClsPub.Enum_OKTag.OKTag_OK) |
| | | { |
| | | //循ç¯éä¸è¡ |
| | | Sub_SetReport(oFrm.sOpenTmp); |
| | | Report.Print(true); |
| | | Sub_SetReportView(oFrm.sOpenTmp); |
| | | Report.PrintPreview(false); |
| | | Thread.Sleep(1000); |
| | | } |
| | | } |
| | | |
| | | //æå°å夿æ¡ç æ¯å¦è¶
è¿å
è®¸å¯æå°æ¬¡æ° |
| | | private bool ReportPrintBegin_SDY() |
| | | { |
| | | string sHRemark = ""; |
| | | sBarCodeItemID = ""; |
| | | for (int i = 0; i < grdList.SelectedRows.Count; i++) |
| | | { |
| | | sBarCodeItemID = sBarCodeItemID + "," + DBUtility.ClsPub.isLong(grdList.Rows[grdList.SelectedRows[i].Index].Cells[Fun_GetCol("HItemID")].Value).ToString(); |
| | | } |
| | | sBarCodeItemID = sBarCodeItemID.Remove(0, 1); |
| | | |
| | | if (PrintQtyCtl == "Y") |
| | | { |
| | | if (oBar.Set_CheckPrintQty(sBarCodeItemID, PrintQty, ref sHRemark)) |
| | | { |
| | | MessageBox.Show(sHRemark); |
| | | return true; |
| | | } |
| | | return false; |
| | | } |
| | | else |
| | | { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | private void Sub_SetReportView(string sOpenTmp) |
| | | { |
| | | //å¤æè¡æ° |
| | | for (int i = 0; i < grdList.Rows.Count; i++) |
| | | { |
| | | grdList.Rows[i].Cells[0].Value = ""; |
| | | } |
| | | for (int i = 0; i < grdList.SelectedRows.Count; i++) |
| | | { |
| | | grdList.Rows[grdList.SelectedRows[i].Index].Cells[0].Value = "*"; |
| | | } |
| | | // |
| | | Report = new GridppReport(); |
| | | Report.LoadFromFile(DBUtility.ClsPub.AppPath + @"\" + sOpenTmp + ".grf"); //here . |
| | | Report.BeforePostRecord += new _IGridppReportEvents_BeforePostRecordEventHandler(ReportBeforePostRecord); |
| | | Report.FetchRecord += new _IGridppReportEvents_FetchRecordEventHandler(ReportFetchRecordByDataTable); |
| | | Report.PrintEnd += new _IGridppReportEvents_PrintEndEventHandler(ReportPrintEnd_SDY); |
| | | } |
| | | |
| | | //æå°ç»æååå¡«æ¡ç æå°æ¬¡æ° |
| | | private void ReportPrintEnd_SDY() |
| | | { |
| | | if (UpdatePrintQtyCtl == "Y") |
| | | { |
| | | oBar.Set_UpdatePrintQty(sBarCodeItemID); |
| | | } |
| | | } |
| | | |
| | | private Int32 Fun_GetCol(string sCol) |
| | | { |
| | | return DBUtility.Xt_BaseBillFun.Fun_GetCol(sCol, grdList); |
| | | } |
| | | |
| | | |
| | | #endregion |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | private void sdy_Click(object sender, EventArgs e) |
| | | { |
| | | //夿æ¯å¦å·²ç»çææ¡ç |
| | | if (DBUtility.ClsPub.isStrNull(grdSub.Rows[0].Cells[HTMCol].Value) == "") |
| | | { |
| | | MessageBox.Show("æ¡ç æªçæï¼è¯·å
çææ¡ç ååé¢è§ï¼"); |
| | | return; |
| | | } |
| | | |
| | | //æå°å夿æ¡ç æ¯å¦å·²æå°è¿ |
| | | if (ReportPrintBegin()) |
| | | { |
| | | return; |
| | | } |
| | | |
| | | //éæ©æå°æ¨¡æ¿ |
| | | BLL.Gy_OpenTmp oFrm = new BLL.Gy_OpenTmp(); |
| | | oFrm.sBillName = ModName; |
| | | oFrm.sBillModel = ModCaption; |
| | | oFrm.ShowDialog(); |
| | | if (oFrm.OKTag == Pub_Class.ClsPub.Enum_OKTag.OKTag_OK) |
| | | { |
| | | Sub_SetReportView(oFrm.sOpenTmp); |
| | | Report.PrintPreview(false); |
| | | Thread.Sleep(1000); |
| | | } |
| | | } |
| | | |
| | | //çæå¤ç®±ç |
| | | private void wxm_Click(object sender, EventArgs e) |
| | |
| | | this.Tool.Location = new System.Drawing.Point(0, 0); |
| | | this.Tool.Name = "Tool"; |
| | | this.Tool.Padding = new System.Windows.Forms.Padding(0); |
| | | this.Tool.Size = new System.Drawing.Size(1356, 62); |
| | | this.Tool.Size = new System.Drawing.Size(1017, 50); |
| | | this.Tool.Stretch = true; |
| | | this.Tool.TabIndex = 17; |
| | | this.Tool.Text = "toolStrip1"; |
| | |
| | | // toolStripSeparator2 |
| | | // |
| | | this.toolStripSeparator2.Name = "toolStripSeparator2"; |
| | | this.toolStripSeparator2.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator2.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // AddRow |
| | | // |
| | |
| | | // toolStripSeparator4 |
| | | // |
| | | this.toolStripSeparator4.Name = "toolStripSeparator4"; |
| | | this.toolStripSeparator4.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator4.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // bc |
| | | // |
| | |
| | | // toolStripSeparator8 |
| | | // |
| | | this.toolStripSeparator8.Name = "toolStripSeparator8"; |
| | | this.toolStripSeparator8.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator8.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // wxm |
| | | // |
| | |
| | | // toolStripSeparator9 |
| | | // |
| | | this.toolStripSeparator9.Name = "toolStripSeparator9"; |
| | | this.toolStripSeparator9.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator9.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // cz |
| | | // |
| | |
| | | // toolStripSeparator5 |
| | | // |
| | | this.toolStripSeparator5.Name = "toolStripSeparator5"; |
| | | this.toolStripSeparator5.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator5.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // kc |
| | | // |
| | |
| | | // toolStripSeparator1 |
| | | // |
| | | this.toolStripSeparator1.Name = "toolStripSeparator1"; |
| | | this.toolStripSeparator1.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator1.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // toolStripSeparator12 |
| | | // |
| | | this.toolStripSeparator12.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; |
| | | this.toolStripSeparator12.Name = "toolStripSeparator12"; |
| | | this.toolStripSeparator12.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator12.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // mrlk |
| | | // |
| | |
| | | this.mrlk.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; |
| | | this.mrlk.ImageTransparentColor = System.Drawing.Color.White; |
| | | this.mrlk.Name = "mrlk"; |
| | | this.mrlk.Size = new System.Drawing.Size(73, 59); |
| | | this.mrlk.Size = new System.Drawing.Size(60, 47); |
| | | this.mrlk.Text = "é»è®¤å宽"; |
| | | this.mrlk.TextAlign = System.Drawing.ContentAlignment.BottomCenter; |
| | | this.mrlk.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
| | |
| | | // |
| | | this.toolStripSeparator11.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; |
| | | this.toolStripSeparator11.Name = "toolStripSeparator11"; |
| | | this.toolStripSeparator11.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator11.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // bclk |
| | | // |
| | |
| | | this.bclk.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; |
| | | this.bclk.ImageTransparentColor = System.Drawing.Color.White; |
| | | this.bclk.Name = "bclk"; |
| | | this.bclk.Size = new System.Drawing.Size(73, 59); |
| | | this.bclk.Size = new System.Drawing.Size(60, 47); |
| | | this.bclk.Text = "ä¿åå宽"; |
| | | this.bclk.TextAlign = System.Drawing.ContentAlignment.BottomCenter; |
| | | this.bclk.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; |
| | |
| | | // |
| | | this.toolStripSeparator10.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; |
| | | this.toolStripSeparator10.Name = "toolStripSeparator10"; |
| | | this.toolStripSeparator10.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator10.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // tb |
| | | // |
| | |
| | | // toolStripSeparator6 |
| | | // |
| | | this.toolStripSeparator6.Name = "toolStripSeparator6"; |
| | | this.toolStripSeparator6.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator6.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // gl |
| | | // |
| | |
| | | // toolStripSeparator7 |
| | | // |
| | | this.toolStripSeparator7.Name = "toolStripSeparator7"; |
| | | this.toolStripSeparator7.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator7.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // BatchNo |
| | | // |
| | |
| | | // toolStripSeparator3 |
| | | // |
| | | this.toolStripSeparator3.Name = "toolStripSeparator3"; |
| | | this.toolStripSeparator3.Size = new System.Drawing.Size(6, 62); |
| | | this.toolStripSeparator3.Size = new System.Drawing.Size(6, 50); |
| | | // |
| | | // tc |
| | | // |
| | |
| | | // |
| | | this.lblCaption.AutoSize = true; |
| | | this.lblCaption.Font = new System.Drawing.Font("å®ä½", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134))); |
| | | this.lblCaption.Location = new System.Drawing.Point(668, 15); |
| | | this.lblCaption.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.lblCaption.Location = new System.Drawing.Point(501, 12); |
| | | this.lblCaption.Name = "lblCaption"; |
| | | this.lblCaption.Size = new System.Drawing.Size(110, 24); |
| | | this.lblCaption.Size = new System.Drawing.Size(89, 19); |
| | | this.lblCaption.TabIndex = 18; |
| | | this.lblCaption.Text = "åæ®ç¼è¾"; |
| | | // |
| | |
| | | this.P1.Controls.Add(this.lblCaption); |
| | | this.P1.Controls.Add(this.gbUp); |
| | | this.P1.Dock = System.Windows.Forms.DockStyle.Top; |
| | | this.P1.Location = new System.Drawing.Point(55, 62); |
| | | this.P1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.P1.Location = new System.Drawing.Point(41, 50); |
| | | this.P1.Name = "P1"; |
| | | this.P1.Size = new System.Drawing.Size(1249, 171); |
| | | this.P1.Size = new System.Drawing.Size(937, 137); |
| | | this.P1.TabIndex = 31; |
| | | // |
| | | // pic1 |
| | | // |
| | | this.pic1.Location = new System.Drawing.Point(417, 4); |
| | | this.pic1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.pic1.Location = new System.Drawing.Point(313, 3); |
| | | this.pic1.Name = "pic1"; |
| | | this.pic1.Size = new System.Drawing.Size(104, 51); |
| | | this.pic1.Size = new System.Drawing.Size(78, 41); |
| | | this.pic1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; |
| | | this.pic1.TabIndex = 36; |
| | | this.pic1.TabStop = false; |
| | |
| | | this.gbUp.Controls.Add(this.label14); |
| | | this.gbUp.Controls.Add(this.cmbSourceBillType); |
| | | this.gbUp.Controls.Add(this.label10); |
| | | this.gbUp.Location = new System.Drawing.Point(19, 49); |
| | | this.gbUp.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.gbUp.Location = new System.Drawing.Point(14, 39); |
| | | this.gbUp.Name = "gbUp"; |
| | | this.gbUp.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.gbUp.Size = new System.Drawing.Size(1189, 100); |
| | | this.gbUp.Size = new System.Drawing.Size(892, 80); |
| | | this.gbUp.TabIndex = 33; |
| | | this.gbUp.TabStop = false; |
| | | // |
| | |
| | | // |
| | | this.cmbHWorksNumber.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
| | | this.cmbHWorksNumber.FormattingEnabled = true; |
| | | this.cmbHWorksNumber.Location = new System.Drawing.Point(525, 21); |
| | | this.cmbHWorksNumber.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.cmbHWorksNumber.Location = new System.Drawing.Point(394, 17); |
| | | this.cmbHWorksNumber.Name = "cmbHWorksNumber"; |
| | | this.cmbHWorksNumber.Size = new System.Drawing.Size(249, 23); |
| | | this.cmbHWorksNumber.Size = new System.Drawing.Size(188, 20); |
| | | this.cmbHWorksNumber.TabIndex = 98; |
| | | // |
| | | // label4 |
| | | // |
| | | this.label4.AutoSize = true; |
| | | this.label4.ForeColor = System.Drawing.Color.Black; |
| | | this.label4.Location = new System.Drawing.Point(436, 26); |
| | | this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label4.Location = new System.Drawing.Point(327, 21); |
| | | this.label4.Name = "label4"; |
| | | this.label4.Size = new System.Drawing.Size(67, 15); |
| | | this.label4.Size = new System.Drawing.Size(53, 12); |
| | | this.label4.TabIndex = 97; |
| | | this.label4.Text = "å·¥å代ç "; |
| | | // |
| | | // dtpHDate |
| | | // |
| | | this.dtpHDate.Format = System.Windows.Forms.DateTimePickerFormat.Short; |
| | | this.dtpHDate.Location = new System.Drawing.Point(901, 21); |
| | | this.dtpHDate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); |
| | | this.dtpHDate.Location = new System.Drawing.Point(676, 17); |
| | | this.dtpHDate.Margin = new System.Windows.Forms.Padding(2); |
| | | this.dtpHDate.Name = "dtpHDate"; |
| | | this.dtpHDate.Size = new System.Drawing.Size(249, 25); |
| | | this.dtpHDate.Size = new System.Drawing.Size(188, 21); |
| | | this.dtpHDate.TabIndex = 96; |
| | | // |
| | | // label2 |
| | | // |
| | | this.label2.AutoSize = true; |
| | | this.label2.Location = new System.Drawing.Point(812, 26); |
| | | this.label2.Location = new System.Drawing.Point(609, 21); |
| | | this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); |
| | | this.label2.Name = "label2"; |
| | | this.label2.Size = new System.Drawing.Size(69, 15); |
| | | this.label2.Size = new System.Drawing.Size(53, 12); |
| | | this.label2.TabIndex = 95; |
| | | this.label2.Text = "æ¥ æ"; |
| | | // |
| | |
| | | // |
| | | this.cmbHOrgID.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
| | | this.cmbHOrgID.FormattingEnabled = true; |
| | | this.cmbHOrgID.Location = new System.Drawing.Point(135, 21); |
| | | this.cmbHOrgID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.cmbHOrgID.Location = new System.Drawing.Point(101, 17); |
| | | this.cmbHOrgID.Name = "cmbHOrgID"; |
| | | this.cmbHOrgID.Size = new System.Drawing.Size(249, 23); |
| | | this.cmbHOrgID.Size = new System.Drawing.Size(188, 20); |
| | | this.cmbHOrgID.TabIndex = 85; |
| | | // |
| | | // label3 |
| | | // |
| | | this.label3.AutoSize = true; |
| | | this.label3.ForeColor = System.Drawing.Color.Black; |
| | | this.label3.Location = new System.Drawing.Point(47, 26); |
| | | this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label3.Location = new System.Drawing.Point(35, 21); |
| | | this.label3.Name = "label3"; |
| | | this.label3.Size = new System.Drawing.Size(69, 15); |
| | | this.label3.Size = new System.Drawing.Size(53, 12); |
| | | this.label3.TabIndex = 84; |
| | | this.label3.Text = "ç» ç»"; |
| | | // |
| | |
| | | // |
| | | this.cmbHBarCodeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
| | | this.cmbHBarCodeType.FormattingEnabled = true; |
| | | this.cmbHBarCodeType.Location = new System.Drawing.Point(901, 58); |
| | | this.cmbHBarCodeType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.cmbHBarCodeType.Location = new System.Drawing.Point(676, 46); |
| | | this.cmbHBarCodeType.Name = "cmbHBarCodeType"; |
| | | this.cmbHBarCodeType.Size = new System.Drawing.Size(249, 23); |
| | | this.cmbHBarCodeType.Size = new System.Drawing.Size(188, 20); |
| | | this.cmbHBarCodeType.TabIndex = 81; |
| | | // |
| | | // label1 |
| | | // |
| | | this.label1.AutoSize = true; |
| | | this.label1.ForeColor = System.Drawing.Color.Black; |
| | | this.label1.Location = new System.Drawing.Point(812, 62); |
| | | this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label1.Location = new System.Drawing.Point(609, 50); |
| | | this.label1.Name = "label1"; |
| | | this.label1.Size = new System.Drawing.Size(67, 15); |
| | | this.label1.Size = new System.Drawing.Size(53, 12); |
| | | this.label1.TabIndex = 80; |
| | | this.label1.Text = "æ¡ç ç±»å"; |
| | | // |
| | |
| | | this.cmdHEmpID.BackColor = System.Drawing.Color.Transparent; |
| | | this.cmdHEmpID.Image = ((System.Drawing.Image)(resources.GetObject("cmdHEmpID.Image"))); |
| | | this.cmdHEmpID.ImageAlign = System.Drawing.ContentAlignment.TopRight; |
| | | this.cmdHEmpID.Location = new System.Drawing.Point(1189, -9); |
| | | this.cmdHEmpID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.cmdHEmpID.Location = new System.Drawing.Point(892, -7); |
| | | this.cmdHEmpID.Name = "cmdHEmpID"; |
| | | this.cmdHEmpID.Size = new System.Drawing.Size(29, 28); |
| | | this.cmdHEmpID.Size = new System.Drawing.Size(22, 22); |
| | | this.cmdHEmpID.TabIndex = 79; |
| | | this.cmdHEmpID.UseVisualStyleBackColor = false; |
| | | this.cmdHEmpID.Visible = false; |
| | |
| | | // |
| | | this.cmdSourceBillNo.Image = ((System.Drawing.Image)(resources.GetObject("cmdSourceBillNo.Image"))); |
| | | this.cmdSourceBillNo.ImageAlign = System.Drawing.ContentAlignment.TopRight; |
| | | this.cmdSourceBillNo.Location = new System.Drawing.Point(747, 56); |
| | | this.cmdSourceBillNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.cmdSourceBillNo.Location = new System.Drawing.Point(560, 45); |
| | | this.cmdSourceBillNo.Name = "cmdSourceBillNo"; |
| | | this.cmdSourceBillNo.Size = new System.Drawing.Size(29, 28); |
| | | this.cmdSourceBillNo.Size = new System.Drawing.Size(22, 22); |
| | | this.cmdSourceBillNo.TabIndex = 42; |
| | | this.cmdSourceBillNo.UseVisualStyleBackColor = true; |
| | | this.cmdSourceBillNo.Click += new System.EventHandler(this.cmdSourceBillNo_Click); |
| | |
| | | // txtHSourceBillNo |
| | | // |
| | | this.txtHSourceBillNo.ImeMode = System.Windows.Forms.ImeMode.NoControl; |
| | | this.txtHSourceBillNo.Location = new System.Drawing.Point(525, 58); |
| | | this.txtHSourceBillNo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.txtHSourceBillNo.Location = new System.Drawing.Point(394, 46); |
| | | this.txtHSourceBillNo.Name = "txtHSourceBillNo"; |
| | | this.txtHSourceBillNo.Size = new System.Drawing.Size(220, 25); |
| | | this.txtHSourceBillNo.Size = new System.Drawing.Size(166, 21); |
| | | this.txtHSourceBillNo.TabIndex = 41; |
| | | this.txtHSourceBillNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtHSourceBillNo_KeyPress); |
| | | // |
| | |
| | | // |
| | | this.label14.AutoSize = true; |
| | | this.label14.ForeColor = System.Drawing.Color.Black; |
| | | this.label14.Location = new System.Drawing.Point(436, 62); |
| | | this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label14.Location = new System.Drawing.Point(327, 50); |
| | | this.label14.Name = "label14"; |
| | | this.label14.Size = new System.Drawing.Size(68, 15); |
| | | this.label14.Size = new System.Drawing.Size(53, 12); |
| | | this.label14.TabIndex = 40; |
| | | this.label14.Text = "é å å·"; |
| | | // |
| | |
| | | this.cmbSourceBillType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
| | | this.cmbSourceBillType.FormattingEnabled = true; |
| | | this.cmbSourceBillType.ImeMode = System.Windows.Forms.ImeMode.NoControl; |
| | | this.cmbSourceBillType.Location = new System.Drawing.Point(135, 58); |
| | | this.cmbSourceBillType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.cmbSourceBillType.Location = new System.Drawing.Point(101, 46); |
| | | this.cmbSourceBillType.Name = "cmbSourceBillType"; |
| | | this.cmbSourceBillType.Size = new System.Drawing.Size(249, 23); |
| | | this.cmbSourceBillType.Size = new System.Drawing.Size(188, 20); |
| | | this.cmbSourceBillType.TabIndex = 36; |
| | | // |
| | | // label10 |
| | | // |
| | | this.label10.AutoSize = true; |
| | | this.label10.ForeColor = System.Drawing.Color.Black; |
| | | this.label10.Location = new System.Drawing.Point(47, 62); |
| | | this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label10.Location = new System.Drawing.Point(35, 50); |
| | | this.label10.Name = "label10"; |
| | | this.label10.Size = new System.Drawing.Size(67, 15); |
| | | this.label10.Size = new System.Drawing.Size(53, 12); |
| | | this.label10.TabIndex = 35; |
| | | this.label10.Text = "æºåç±»å"; |
| | | // |
| | |
| | | this.panel2.Controls.Add(this.txtHMaker); |
| | | this.panel2.Controls.Add(this.label8); |
| | | this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom; |
| | | this.panel2.Location = new System.Drawing.Point(55, 633); |
| | | this.panel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.panel2.Location = new System.Drawing.Point(41, 506); |
| | | this.panel2.Name = "panel2"; |
| | | this.panel2.Size = new System.Drawing.Size(1249, 116); |
| | | this.panel2.Size = new System.Drawing.Size(937, 93); |
| | | this.panel2.TabIndex = 32; |
| | | // |
| | | // txtHDeleteDate |
| | | // |
| | | this.txtHDeleteDate.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHDeleteDate.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHDeleteDate.Location = new System.Drawing.Point(967, 59); |
| | | this.txtHDeleteDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHDeleteDate.Location = new System.Drawing.Point(725, 47); |
| | | this.txtHDeleteDate.Name = "txtHDeleteDate"; |
| | | this.txtHDeleteDate.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHDeleteDate.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHDeleteDate.TabIndex = 19; |
| | | // |
| | | // label25 |
| | |
| | | this.label25.AutoSize = true; |
| | | this.label25.BackColor = System.Drawing.Color.Transparent; |
| | | this.label25.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label25.Location = new System.Drawing.Point(888, 62); |
| | | this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label25.Location = new System.Drawing.Point(666, 50); |
| | | this.label25.Name = "label25"; |
| | | this.label25.Size = new System.Drawing.Size(67, 15); |
| | | this.label25.Size = new System.Drawing.Size(53, 12); |
| | | this.label25.TabIndex = 18; |
| | | this.label25.Text = "ä½åºæ¥æ"; |
| | | // |
| | |
| | | // |
| | | this.txtHDeleteMan.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHDeleteMan.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHDeleteMan.Location = new System.Drawing.Point(967, 15); |
| | | this.txtHDeleteMan.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHDeleteMan.Location = new System.Drawing.Point(725, 12); |
| | | this.txtHDeleteMan.Name = "txtHDeleteMan"; |
| | | this.txtHDeleteMan.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHDeleteMan.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHDeleteMan.TabIndex = 17; |
| | | // |
| | | // label27 |
| | |
| | | this.label27.AutoSize = true; |
| | | this.label27.BackColor = System.Drawing.Color.Transparent; |
| | | this.label27.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label27.Location = new System.Drawing.Point(888, 15); |
| | | this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label27.Location = new System.Drawing.Point(666, 12); |
| | | this.label27.Name = "label27"; |
| | | this.label27.Size = new System.Drawing.Size(52, 15); |
| | | this.label27.Size = new System.Drawing.Size(41, 12); |
| | | this.label27.TabIndex = 16; |
| | | this.label27.Text = "ä½åºäºº"; |
| | | // |
| | |
| | | // |
| | | this.txtHUpDateDate.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHUpDateDate.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHUpDateDate.Location = new System.Drawing.Point(749, 59); |
| | | this.txtHUpDateDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHUpDateDate.Location = new System.Drawing.Point(562, 47); |
| | | this.txtHUpDateDate.Name = "txtHUpDateDate"; |
| | | this.txtHUpDateDate.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHUpDateDate.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHUpDateDate.TabIndex = 15; |
| | | // |
| | | // label23 |
| | |
| | | this.label23.AutoSize = true; |
| | | this.label23.BackColor = System.Drawing.Color.Transparent; |
| | | this.label23.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label23.Location = new System.Drawing.Point(671, 59); |
| | | this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label23.Location = new System.Drawing.Point(503, 47); |
| | | this.label23.Name = "label23"; |
| | | this.label23.Size = new System.Drawing.Size(67, 15); |
| | | this.label23.Size = new System.Drawing.Size(53, 12); |
| | | this.label23.TabIndex = 14; |
| | | this.label23.Text = "ä¿®æ¹æ¥æ"; |
| | | // |
| | |
| | | // |
| | | this.txtHUpDater.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHUpDater.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHUpDater.Location = new System.Drawing.Point(749, 15); |
| | | this.txtHUpDater.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHUpDater.Location = new System.Drawing.Point(562, 12); |
| | | this.txtHUpDater.Name = "txtHUpDater"; |
| | | this.txtHUpDater.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHUpDater.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHUpDater.TabIndex = 13; |
| | | // |
| | | // label21 |
| | |
| | | this.label21.AutoSize = true; |
| | | this.label21.BackColor = System.Drawing.Color.Transparent; |
| | | this.label21.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label21.Location = new System.Drawing.Point(671, 15); |
| | | this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label21.Location = new System.Drawing.Point(503, 12); |
| | | this.label21.Name = "label21"; |
| | | this.label21.Size = new System.Drawing.Size(52, 15); |
| | | this.label21.Size = new System.Drawing.Size(41, 12); |
| | | this.label21.TabIndex = 12; |
| | | this.label21.Text = "ä¿®æ¹äºº"; |
| | | // |
| | |
| | | // |
| | | this.txtHCloseDate.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHCloseDate.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHCloseDate.Location = new System.Drawing.Point(529, 59); |
| | | this.txtHCloseDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHCloseDate.Location = new System.Drawing.Point(397, 47); |
| | | this.txtHCloseDate.Name = "txtHCloseDate"; |
| | | this.txtHCloseDate.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHCloseDate.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHCloseDate.TabIndex = 11; |
| | | // |
| | | // label19 |
| | |
| | | this.label19.AutoSize = true; |
| | | this.label19.BackColor = System.Drawing.Color.Transparent; |
| | | this.label19.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label19.Location = new System.Drawing.Point(451, 62); |
| | | this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label19.Location = new System.Drawing.Point(338, 50); |
| | | this.label19.Name = "label19"; |
| | | this.label19.Size = new System.Drawing.Size(67, 15); |
| | | this.label19.Size = new System.Drawing.Size(53, 12); |
| | | this.label19.TabIndex = 10; |
| | | this.label19.Text = "å
³éæ¥æ"; |
| | | // |
| | |
| | | // |
| | | this.txtHCloseMan.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHCloseMan.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHCloseMan.Location = new System.Drawing.Point(528, 16); |
| | | this.txtHCloseMan.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHCloseMan.Location = new System.Drawing.Point(396, 13); |
| | | this.txtHCloseMan.Name = "txtHCloseMan"; |
| | | this.txtHCloseMan.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHCloseMan.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHCloseMan.TabIndex = 9; |
| | | // |
| | | // label17 |
| | |
| | | this.label17.AutoSize = true; |
| | | this.label17.BackColor = System.Drawing.Color.Transparent; |
| | | this.label17.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label17.Location = new System.Drawing.Point(451, 20); |
| | | this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label17.Location = new System.Drawing.Point(338, 16); |
| | | this.label17.Name = "label17"; |
| | | this.label17.Size = new System.Drawing.Size(52, 15); |
| | | this.label17.Size = new System.Drawing.Size(41, 12); |
| | | this.label17.TabIndex = 8; |
| | | this.label17.Text = "å
³é人"; |
| | | // |
| | |
| | | // |
| | | this.txtHCheckDate.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHCheckDate.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHCheckDate.Location = new System.Drawing.Point(312, 59); |
| | | this.txtHCheckDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHCheckDate.Location = new System.Drawing.Point(234, 47); |
| | | this.txtHCheckDate.Name = "txtHCheckDate"; |
| | | this.txtHCheckDate.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHCheckDate.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHCheckDate.TabIndex = 7; |
| | | // |
| | | // label15 |
| | |
| | | this.label15.AutoSize = true; |
| | | this.label15.BackColor = System.Drawing.Color.Transparent; |
| | | this.label15.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label15.Location = new System.Drawing.Point(233, 62); |
| | | this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label15.Location = new System.Drawing.Point(175, 50); |
| | | this.label15.Name = "label15"; |
| | | this.label15.Size = new System.Drawing.Size(67, 15); |
| | | this.label15.Size = new System.Drawing.Size(53, 12); |
| | | this.label15.TabIndex = 6; |
| | | this.label15.Text = "å®¡æ ¸æ¥æ"; |
| | | // |
| | |
| | | // |
| | | this.txtHChecker.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHChecker.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHChecker.Location = new System.Drawing.Point(312, 16); |
| | | this.txtHChecker.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHChecker.Location = new System.Drawing.Point(234, 13); |
| | | this.txtHChecker.Name = "txtHChecker"; |
| | | this.txtHChecker.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHChecker.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHChecker.TabIndex = 5; |
| | | // |
| | | // label13 |
| | |
| | | this.label13.AutoSize = true; |
| | | this.label13.BackColor = System.Drawing.Color.Transparent; |
| | | this.label13.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label13.Location = new System.Drawing.Point(233, 20); |
| | | this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label13.Location = new System.Drawing.Point(175, 16); |
| | | this.label13.Name = "label13"; |
| | | this.label13.Size = new System.Drawing.Size(52, 15); |
| | | this.label13.Size = new System.Drawing.Size(41, 12); |
| | | this.label13.TabIndex = 4; |
| | | this.label13.Text = "å®¡æ ¸äºº"; |
| | | // |
| | |
| | | // |
| | | this.txtHMakeDate.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHMakeDate.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHMakeDate.Location = new System.Drawing.Point(95, 59); |
| | | this.txtHMakeDate.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHMakeDate.Location = new System.Drawing.Point(71, 47); |
| | | this.txtHMakeDate.Name = "txtHMakeDate"; |
| | | this.txtHMakeDate.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHMakeDate.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHMakeDate.TabIndex = 3; |
| | | // |
| | | // label11 |
| | |
| | | this.label11.AutoSize = true; |
| | | this.label11.BackColor = System.Drawing.Color.Transparent; |
| | | this.label11.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label11.Location = new System.Drawing.Point(16, 62); |
| | | this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label11.Location = new System.Drawing.Point(12, 50); |
| | | this.label11.Name = "label11"; |
| | | this.label11.Size = new System.Drawing.Size(67, 15); |
| | | this.label11.Size = new System.Drawing.Size(53, 12); |
| | | this.label11.TabIndex = 2; |
| | | this.label11.Text = "å¶åæ¥æ"; |
| | | // |
| | |
| | | // |
| | | this.txtHMaker.BackColor = System.Drawing.Color.Transparent; |
| | | this.txtHMaker.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.txtHMaker.Location = new System.Drawing.Point(95, 16); |
| | | this.txtHMaker.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.txtHMaker.Location = new System.Drawing.Point(71, 13); |
| | | this.txtHMaker.Name = "txtHMaker"; |
| | | this.txtHMaker.Size = new System.Drawing.Size(131, 19); |
| | | this.txtHMaker.Size = new System.Drawing.Size(98, 15); |
| | | this.txtHMaker.TabIndex = 1; |
| | | // |
| | | // label8 |
| | |
| | | this.label8.AutoSize = true; |
| | | this.label8.BackColor = System.Drawing.Color.Transparent; |
| | | this.label8.ForeColor = System.Drawing.SystemColors.ControlDarkDark; |
| | | this.label8.Location = new System.Drawing.Point(16, 20); |
| | | this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); |
| | | this.label8.Location = new System.Drawing.Point(12, 16); |
| | | this.label8.Name = "label8"; |
| | | this.label8.Size = new System.Drawing.Size(52, 15); |
| | | this.label8.Size = new System.Drawing.Size(41, 12); |
| | | this.label8.TabIndex = 0; |
| | | this.label8.Text = "å¶å人"; |
| | | // |
| | |
| | | // panel1 |
| | | // |
| | | this.panel1.Dock = System.Windows.Forms.DockStyle.Left; |
| | | this.panel1.Location = new System.Drawing.Point(0, 62); |
| | | this.panel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.panel1.Location = new System.Drawing.Point(0, 50); |
| | | this.panel1.Name = "panel1"; |
| | | this.panel1.Size = new System.Drawing.Size(55, 687); |
| | | this.panel1.Size = new System.Drawing.Size(41, 549); |
| | | this.panel1.TabIndex = 33; |
| | | // |
| | | // panel3 |
| | | // |
| | | this.panel3.Dock = System.Windows.Forms.DockStyle.Right; |
| | | this.panel3.Location = new System.Drawing.Point(1304, 62); |
| | | this.panel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.panel3.Location = new System.Drawing.Point(978, 50); |
| | | this.panel3.Name = "panel3"; |
| | | this.panel3.Size = new System.Drawing.Size(52, 687); |
| | | this.panel3.Size = new System.Drawing.Size(39, 549); |
| | | this.panel3.TabIndex = 34; |
| | | // |
| | | // grdMain |
| | |
| | | this.grdMain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; |
| | | this.grdMain.Dock = System.Windows.Forms.DockStyle.Fill; |
| | | this.grdMain.ImeMode = System.Windows.Forms.ImeMode.NoControl; |
| | | this.grdMain.Location = new System.Drawing.Point(4, 4); |
| | | this.grdMain.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.grdMain.Location = new System.Drawing.Point(3, 3); |
| | | this.grdMain.Name = "grdMain"; |
| | | this.grdMain.ReadOnly = true; |
| | | this.grdMain.RowHeadersWidth = 30; |
| | | this.grdMain.RowTemplate.Height = 23; |
| | | this.grdMain.Size = new System.Drawing.Size(1233, 339); |
| | | this.grdMain.Size = new System.Drawing.Size(923, 268); |
| | | this.grdMain.TabIndex = 44; |
| | | this.grdMain.RowHeadersWidthChanged += new System.EventHandler(this.grdMain_RowHeadersWidthChanged); |
| | | this.grdMain.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.grdMain_CellBeginEdit); |
| | |
| | | this.grdSum.BackgroundColor = System.Drawing.Color.Khaki; |
| | | this.grdSum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; |
| | | this.grdSum.Dock = System.Windows.Forms.DockStyle.Bottom; |
| | | this.grdSum.Location = new System.Drawing.Point(55, 609); |
| | | this.grdSum.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.grdSum.Location = new System.Drawing.Point(41, 487); |
| | | this.grdSum.Name = "grdSum"; |
| | | this.grdSum.ReadOnly = true; |
| | | this.grdSum.RowHeadersWidth = 51; |
| | | this.grdSum.RowTemplate.Height = 23; |
| | | this.grdSum.ScrollBars = System.Windows.Forms.ScrollBars.None; |
| | | this.grdSum.Size = new System.Drawing.Size(1249, 24); |
| | | this.grdSum.Size = new System.Drawing.Size(937, 19); |
| | | this.grdSum.TabIndex = 45; |
| | | // |
| | | // grdPrint |
| | | // |
| | | this.grdPrint.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; |
| | | this.grdPrint.Location = new System.Drawing.Point(1079, 679); |
| | | this.grdPrint.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.grdPrint.Location = new System.Drawing.Point(809, 543); |
| | | this.grdPrint.Name = "grdPrint"; |
| | | this.grdPrint.RowHeadersWidth = 51; |
| | | this.grdPrint.RowTemplate.Height = 23; |
| | | this.grdPrint.Size = new System.Drawing.Size(33, 30); |
| | | this.grdPrint.Size = new System.Drawing.Size(25, 24); |
| | | this.grdPrint.TabIndex = 46; |
| | | this.grdPrint.Visible = false; |
| | | // |
| | |
| | | this.tabControl1.Controls.Add(this.tabPage2); |
| | | this.tabControl1.Controls.Add(this.tabPage3); |
| | | this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; |
| | | this.tabControl1.Location = new System.Drawing.Point(55, 233); |
| | | this.tabControl1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.tabControl1.Location = new System.Drawing.Point(41, 187); |
| | | this.tabControl1.Name = "tabControl1"; |
| | | this.tabControl1.SelectedIndex = 0; |
| | | this.tabControl1.Size = new System.Drawing.Size(1249, 376); |
| | | this.tabControl1.Size = new System.Drawing.Size(937, 300); |
| | | this.tabControl1.TabIndex = 47; |
| | | // |
| | | // tabPage1 |
| | | // |
| | | this.tabPage1.Controls.Add(this.grdMain); |
| | | this.tabPage1.Location = new System.Drawing.Point(4, 25); |
| | | this.tabPage1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.tabPage1.Location = new System.Drawing.Point(4, 22); |
| | | this.tabPage1.Name = "tabPage1"; |
| | | this.tabPage1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.tabPage1.Size = new System.Drawing.Size(1241, 347); |
| | | this.tabPage1.Padding = new System.Windows.Forms.Padding(3); |
| | | this.tabPage1.Size = new System.Drawing.Size(929, 274); |
| | | this.tabPage1.TabIndex = 0; |
| | | this.tabPage1.Text = "ç©æä¿¡æ¯"; |
| | | this.tabPage1.UseVisualStyleBackColor = true; |
| | |
| | | // tabPage2 |
| | | // |
| | | this.tabPage2.Controls.Add(this.grdSub); |
| | | this.tabPage2.Location = new System.Drawing.Point(4, 25); |
| | | this.tabPage2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.tabPage2.Location = new System.Drawing.Point(4, 22); |
| | | this.tabPage2.Name = "tabPage2"; |
| | | this.tabPage2.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.tabPage2.Size = new System.Drawing.Size(1241, 347); |
| | | this.tabPage2.Padding = new System.Windows.Forms.Padding(3); |
| | | this.tabPage2.Size = new System.Drawing.Size(929, 274); |
| | | this.tabPage2.TabIndex = 1; |
| | | this.tabPage2.Text = "æ¡ç ä¿¡æ¯"; |
| | | this.tabPage2.UseVisualStyleBackColor = true; |
| | |
| | | this.grdSub.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; |
| | | this.grdSub.Dock = System.Windows.Forms.DockStyle.Fill; |
| | | this.grdSub.ImeMode = System.Windows.Forms.ImeMode.NoControl; |
| | | this.grdSub.Location = new System.Drawing.Point(4, 4); |
| | | this.grdSub.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.grdSub.Location = new System.Drawing.Point(3, 3); |
| | | this.grdSub.Name = "grdSub"; |
| | | this.grdSub.ReadOnly = true; |
| | | this.grdSub.RowHeadersWidth = 30; |
| | | this.grdSub.RowTemplate.Height = 23; |
| | | this.grdSub.Size = new System.Drawing.Size(1233, 339); |
| | | this.grdSub.Size = new System.Drawing.Size(923, 268); |
| | | this.grdSub.TabIndex = 45; |
| | | this.grdSub.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.grdSub_CellBeginEdit); |
| | | this.grdSub.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdSub_CellContentClick); |
| | |
| | | // tabPage3 |
| | | // |
| | | this.tabPage3.Controls.Add(this.grdList); |
| | | this.tabPage3.Location = new System.Drawing.Point(4, 25); |
| | | this.tabPage3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.tabPage3.Location = new System.Drawing.Point(4, 22); |
| | | this.tabPage3.Name = "tabPage3"; |
| | | this.tabPage3.Size = new System.Drawing.Size(1242, 348); |
| | | this.tabPage3.Size = new System.Drawing.Size(929, 274); |
| | | this.tabPage3.TabIndex = 2; |
| | | this.tabPage3.Text = "æ¡£æ¡å表"; |
| | | this.tabPage3.UseVisualStyleBackColor = true; |
| | |
| | | this.grdList.Dock = System.Windows.Forms.DockStyle.Fill; |
| | | this.grdList.ImeMode = System.Windows.Forms.ImeMode.NoControl; |
| | | this.grdList.Location = new System.Drawing.Point(0, 0); |
| | | this.grdList.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.grdList.Name = "grdList"; |
| | | this.grdList.ReadOnly = true; |
| | | this.grdList.RowHeadersWidth = 30; |
| | | this.grdList.RowTemplate.Height = 23; |
| | | this.grdList.Size = new System.Drawing.Size(1242, 348); |
| | | this.grdList.Size = new System.Drawing.Size(929, 274); |
| | | this.grdList.TabIndex = 46; |
| | | // |
| | | // Gy_BarCodeBill |
| | | // |
| | | this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); |
| | | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); |
| | | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
| | | this.BackColor = System.Drawing.Color.Lavender; |
| | | this.ClientSize = new System.Drawing.Size(1356, 749); |
| | | this.ClientSize = new System.Drawing.Size(1017, 599); |
| | | this.Controls.Add(this.tabControl1); |
| | | this.Controls.Add(this.grdSum); |
| | | this.Controls.Add(this.panel2); |
| | |
| | | this.Controls.Add(this.grdPrint); |
| | | this.ForeColor = System.Drawing.Color.Black; |
| | | this.KeyPreview = true; |
| | | this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); |
| | | this.Name = "Gy_BarCodeBill"; |
| | | this.Text = "åæ®ç¼è¾"; |
| | | this.WindowState = System.Windows.Forms.FormWindowState.Maximized; |
| | |
| | | <data name="dy.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADmSURBVDhPlY6xDYMwFES9U3bKCmzACEh0FJmACRiAnoqK |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADmSURBVDhPlY6xDYMwFES9U3bKCmzACEh0FJmACRiAnoqK |
| | | jo6OzvH7yVk/OFHg0MnC/vfuhzOq6zrK76vzIrRtm3nf92sgBpdlieu6ZgCe5xmAXEot0zTZMABBXLiU |
| | | grRUVRWHYTATYpOfYR9kiGbMnQelUTu5wzmsoDWk796GOI6jGRDDzH0BxAyQ1Z5e4xhuGUSQWbkAaE2B |
| | | FMRN05h9uAD4JoHato1d9yjCOjOAH9Y+QggDOW5gwZdfEgR7iAf4YG53yq0eBADzjlWk/+QP2WXf9xmk |
| | |
| | | <data name="sdy.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAF/SURBVDhPnZFNSwJBAIbnX1Q/IOoYeAzqHh3C6JAgJEgU |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAF/SURBVDhPnZFNSwJBAIbnX1Q/IOoYeAzqHh3C6JAgJEgU |
| | | UQgaeQgxKZQwtBRC7YsiOnQPISISKyEPUrcgKqIipNQ11/XzbWfQdf1IxQceZnaYeVhmiNV9AIvDB/OG |
| | | V3JF/F5z7cK9fwrSCtP6NhrhdNyxsWXEuOpkGwvFoiTFbg+xkdI0YjDb2aZsLi9J8fouMDqhhlKlhcm2 |
| | | 9X9At2xlB1JCFnzJdCaHAl3jBeSyWWZpez3zSxYW4FIZJPmKQqZ0cDpcbS0zehML/HA8Ysk0k09npMNK |
| | |
| | | <data name="yl.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAF/SURBVDhPnZFNSwJBAIbnX1Q/IOoYeAzqHh3C6JAgJEgU |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAF/SURBVDhPnZFNSwJBAIbnX1Q/IOoYeAzqHh3C6JAgJEgU |
| | | UQgaeQgxKZQwtBRC7YsiOnQPISISKyEPUrcgKqIipNQ11/XzbWfQdf1IxQceZnaYeVhmiNV9AIvDB/OG |
| | | V3JF/F5z7cK9fwrSCtP6NhrhdNyxsWXEuOpkGwvFoiTFbg+xkdI0YjDb2aZsLi9J8fouMDqhhlKlhcm2 |
| | | 9X9At2xlB1JCFnzJdCaHAl3jBeSyWWZpez3zSxYW4FIZJPmKQqZ0cDpcbS0zehML/HA8Ysk0k09npMNK |
| | |
| | | <data name="AddRow.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAEdSURBVDhPY/hPIWCws7P7TypGBmADPHb8B2OnLT//W6/5 |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEdSURBVDhPY/hPIWCws7P7TypGBmADPHb8B2OnLT//W6/5 |
| | | 9N9w6cv/mnMf/FeYeuO/eN/5/3xtx/4z1+wBY9oYUJCfTzTGasCqlSv/v3n9mihM0IDLly7937N79/+t |
| | | W7aAxZcuWQLHCgoKcAwDWA04evHY/1U7VmNgkMaSuw3/ra2todqRDIDZvHD9ov996yf+r1pa/z9rct7/ |
| | | mOZEuK0S7Wr/rc75gGmYGIoBIJu3nt/xf+n5Vf9nnZv/f8r52f9b93XDbQbhkGspYHrS09mYBsBcMHXD |
| | |
| | | <data name="spRow.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAEdSURBVDhPY/hPIWCws7P7TypGBmADPHb8B2OnLT//W6/5 |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEdSURBVDhPY/hPIWCws7P7TypGBmADPHb8B2OnLT//W6/5 |
| | | 9N9w6cv/mnMf/FeYeuO/eN/5/3xtx/4z1+wBY9oYUJCfTzTGasCqlSv/v3n9mihM0IDLly7937N79/+t |
| | | W7aAxZcuWQLHCgoKcAwDWA04evHY/1U7VmNgkMaSuw3/ra2todqRDIDZvHD9ov996yf+r1pa/z9rct7/ |
| | | mOZEuK0S7Wr/rc75gGmYGIoBIJu3nt/xf+n5Vf9nnZv/f8r52f9b93XDbQbhkGspYHrS09mYBsBcMHXD |
| | |
| | | <data name="DelRow.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADSSURBVDhPlZPRDYQgEERpxgaswlCGv/ZBSXwbC6AAC7AA |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADSSURBVDhPlZPRDYQgEERpxgaswlCGv/ZBSXwbC6AAC7AA |
| | | G9hj1huCuMS7SUYi8l4IqhvHUf5tHRWc59ntcRy3dgXrusq2baUppUf3fe8L3mD0J0EPZLsCC0Sdcw8B |
| | | 5hgV4HBaEIt14bIUCYUyTUViCmpYhqFICLM61wq41YcEbeDbDmqwbpEYMKICC0QhRhUwYMQUEGxhS6KC |
| | | EIJ472We51dYm8+DEr1Cgm8BkhijCeNe575vhZJLk8OdQMCvkhKM+FfwjBIdc4oAgaQtFlpzV0Q+Xg/P |
| | |
| | | <data name="bc.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAH1SURBVDhPjZPNSxRxGMcfI+jQLTxYIKLoQQsjvEadEoRO |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAH1SURBVDhPjZPNSxRxGMcfI+jQLTxYIKLoQQsjvEadEoRO |
| | | /gO+awReIiGty97sRQtbPSmoB8FFMSwKDx3VXdvcfGErt9YlpWUJF/dFV2d0v36fHc0XdPALX2bmme/z |
| | | mec38xuRBi+kahqRVmD5yfmsWe3J9ErtDD6tAQkAv85pzWqP9oo0foVcbWcJMEwDpmnaWjMqyWlHplfq |
| | | ZlD2IVPD5CTgnra3ZlTN3oMJaj24NWYVk6kUNrbsrRlV+QQBNZ7jgKkpPsVtb82oCl06wQnAv1gCa/Gk |
| | |
| | | <data name="wxm.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAH1SURBVDhPjZPNSxRxGMcfI+jQLTxYIKLoQQsjvEadEoRO |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAH1SURBVDhPjZPNSxRxGMcfI+jQLTxYIKLoQQsjvEadEoRO |
| | | /gO+awReIiGty97sRQtbPSmoB8FFMSwKDx3VXdvcfGErt9YlpWUJF/dFV2d0v36fHc0XdPALX2bmme/z |
| | | mec38xuRBi+kahqRVmD5yfmsWe3J9ErtDD6tAQkAv85pzWqP9oo0foVcbWcJMEwDpmnaWjMqyWlHplfq |
| | | ZlD2IVPD5CTgnra3ZlTN3oMJaj24NWYVk6kUNrbsrRlV+QQBNZ7jgKkpPsVtb82oCl06wQnAv1gCa/Gk |
| | |
| | | <data name="cz.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAACfSURBVDhPYyAGsGWf/Q9lkglSz/xnSANiskHCqf9///8n |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACfSURBVDhPYyAGsGWf/Q9lkglSz/xnSANiskHCqf9///8n |
| | | wxCQBhAOPfp/ytn/JBgCUpQIsRWGQQYQZwhQ8ilQEQj3XwAqnokFG8/EbwDMNrhiUCCSohluM0wxzAC8 |
| | | mkEAagBYMbI/QQYQ1AwCuAwgSjMI4DKAaIBkwD2C0YULAJ2LYQgMEwWgBiAbAsMkGQLGoLBAxyR5C2YQ |
| | | OoYDBgYA9kn+I3B8Li4AAAAASUVORK5CYII= |
| | |
| | | <data name="kc.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAEwSURBVDhPlZKxSgNBEIb3Qa66V7ha6xS+glgErvURzBNE |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEwSURBVDhPlZKxSgNBEIb3Qa66V7ha6xS+glgErvURzBNE |
| | | 2wOLaKet2NlEsFtIiohgJR6xEdQ0Gojwu/9k59xdL1z84Ye73Z1vZmfWpLJVgeMD02l//K8IACy+l2N8 |
| | | vl1h8XyO14cTzO0RnsaHEgxbEhBDer0B6CzLkOc5CPp6d4B6DXixgwYgSUIIA+/qWjZWy1vJTBD/+/1T |
| | | 8dwDfNCvNTgEDIc3YkIW9Vl0hcfrfdxf7GE62tkMkLu70gnQClJPRrvbAdIesILZZUcF4RXastMTBVBt |
| | |
| | | <data name="mrlk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAH/SURBVDhPfZHfS1NhGMefkCLQu/A/6MK6SbMQFlg3dudN |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAH/SURBVDhPfZHfS1NhGMefkCLQu/A/6MK6SbMQFlg3dudN |
| | | oBFDY9BF05XMMAoLL3bhxGB4zjzoVCKim4iCgkCMSam1cqP9aO4YJlpIDmqh00IRv73Pe87OWuV54Mt7 |
| | | znm/n895z0aF8Stj6FdGoARDUAf/H97jTp96FyZmjC8QwuRUBB0zACkiwT0i9rxvgBcvX4MZEye65Vex |
| | | vp6HJ7yJ+1nYpmNyE3nRZcbEiW74AljL5UB3gOk84J8HnFPA0UfirZqIaoZPMQDZZcbEibp6+vE9mwUF |
| | |
| | | <data name="bclk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAH4SURBVDhPjZPNS1RRGMZfI2jRLlqUEKLUQgsl3EauEoRW |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAH4SURBVDhPjZPNS1RRGMZfI2jRLlqUEKLUQgsl3EauEoRW |
| | | /QN+phG4CQXTNrPLbzFrpZAuBIfEqChctFRndHI0YzKnxkHFYQgH50NH5+o8Pm/HwQ/s4oGHc++5z/O7 |
| | | 77nnvSKPPZDyKYSfA8tN55N6NfMvK1XT+LIBxAH8PqfUqxnNitR+g1x/yQuRlJWCZVm2Uo965RozmpXq |
| | | aRR/Io1jYgJwTdlLPeqt92QqqHLj7phZTCST2Nqxl3rUWzrOTKX7JGBykm9x2Us96r3p1ApOAf5G49iI |
| | |
| | | <data name="tb.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAHvSURBVDhPnZJNSFRRGIYPCBHYLl24d9EiKsuN48KNBbUo |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHvSURBVDhPnZJNSFRRGIYPCBHYLl24d9EiKsuN48KNBbUo |
| | | EGSEmEwXoo0iRkR/ZBkSaC3m74qmC3/GjS7Edv5RTQNCMzUyNMWUWFaTo6AIaqjQ2/d999id61SLXnjh |
| | | cr73ec8991yVqXZPLzq9PfD6e+AL2M1rnZ4n4IyO29Xa0YUf27twhwDlJfv3mdaawz8lw1mNWbrV7sHa |
| | | 6jrcUxsYTOOPbprelAxnNWbp+r1HWF1ZhnoMDHwFKp8BeYO0s0+b38IDyXBWY5au3nmIdOqbhC6HgYIh |
| | |
| | | <data name="gl.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAG3SURBVDhPfVLdK0NhHH5LSXGn/QculCsfUbtRLl1JbhQh |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAG3SURBVDhPfVLdK0NhHH5LSXGn/QculCsfUbtRLl1JbhQh |
| | | taxNNPnOolY+yhjjQo12oRQ3bhWiZGULF3Kv5Nucbeacs4/HeX/HnJ289tRT7+/5/Z7nfc+vw+bXgvD4 |
| | | NuFZDojpC2DOvwX/1i6YCDPeDXEjDyu+C5oRhrgX1knMZrMQkfe83vNf45+QydlVEtKZDETkvaWlkMlk |
| | | Chn3LFOhptIQMQsgsHmElvYetHXYcHB4YgpjIzOLJMhKCiIqagoZLUVKJPEWlWg2UlOKs3KmB7ncC3RI |
| | |
| | | <data name="BatchNo.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAD3SURBVDhPnZC9FYIwFEaZiQFkAB1ADzULZACGoJLKSio7 |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAD3SURBVDhPnZC9FYIwFEaZiQFkAB1ADzULZACGoJLKSio7 |
| | | BqCzorNiABgABnjme+GFBPlR3znfSUJy7yMJdorG0S2KY1r6/lE0PBMcdA8z3NZEd9VtSmiolU7iSjwY |
| | | CcNyUUL0UhzMIcK4An8IPFjGr2F0s3CTmrFOLbgN67vK79LQsOCqQhaIxIE9AfXVxT4Wwzp1NsGYQ4b9 |
| | | tjhSe4smiVKma19NL+4KBEQA85hH1OQH+T6T6MgagaArThys0V3g8ZwpgbryzBuIXAfB3iosZSUP3VEH |
| | |
| | | <data name="tc.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> |
| | | <value> |
| | | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 |
| | | YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAADCSURBVDhPpZJdCoMwEIRzpxxJ6Ak2z/ZZnysIBXuUHMA7 |
| | | YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADCSURBVDhPpZJdCoMwEIRzpxxJ6Ak2z/ZZnysIBXuUHMA7 |
| | | bXeWrGBMYkoHh+gk8xl/XEneP7jXqXIWJkIgHscnT/PEy2vhz7ZhMQ/Dm5l3ObRcB1ACzAKQ6FTcV69G |
| | | rgWTbUl3QFQtFgGpfAAoAVDOi2ZbrwW5hwY4N+P6FmDlkrsBq6zOy3AXIEkhGHMbIMaorgGgI8Cu7CsY |
| | | wOZbAEgDBch/gOveRzgJAKLwH0CGJsDmxU1dAMiSu3R5iZr+oJuic1+SJ5jRbOqnmgAAAABJRU5ErkJg |
| | |
| | | using DBUtility; |
| | | using System.Threading; |
| | | using System.IO; |
| | | using Pub_Class; |
| | | |
| | | namespace WarM |
| | | { |
| | |
| | | public const string ModRightNameCheck = ModRightName + "_Check"; |
| | | public const string ModRightNameClose = ModRightName + "_Close"; |
| | | public const string ModRightNameDelete = ModRightName + "_Delete"; |
| | | public const string ModRightNamePrint = ModRightName + "_Print"; //æå° |
| | | //DAL.ClsGy_ICBomBill oBill = new DAL.ClsGy_ICBomBill(); |
| | | //public Gy_ICBomBill oFrm; |
| | | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); |
| | | public int selectRow = 0; |
| | | public int selectRow2 = 0; |
| | | public long PrintQty = 0; //å
许æ¡ç æå°æ¬¡æ° |
| | | public string PrintQtyCtl = ""; //æ¡ç æå°æ¬¡æ°æ§å¶ |
| | | public string UpdatePrintQtyCtl = ""; //æ¡ç æå°æ¬¡æ°æ´æ° |
| | | // |
| | | private void initGrid() |
| | | { |
| | |
| | | this.Text = ModCaption; |
| | | lblCaption.Text = ModCaption; |
| | | initGrid(); |
| | | Sub_GetSystemParameter(); |
| | | } |
| | | |
| | | //è·åç³»ç»åæ°ä¿¡æ¯ |
| | | private void Sub_GetSystemParameter() |
| | | { |
| | | //è·åç³»ç»åæ° |
| | | ClsXt_SystemParameter oSystemParameter = new ClsXt_SystemParameter(); |
| | | if (oSystemParameter.ShowBill(ref DBUtility.ClsPub.sExeReturnInfo) == false) |
| | | { |
| | | MessageBox.Show("è·åç³»ç»åæ°å¤±è´¥ï¼åå :" + DBUtility.ClsPub.sExeReturnInfo, "æç¤º"); |
| | | return; |
| | | } |
| | | else |
| | | { |
| | | PrintQty = oSystemParameter.omodel.BarCode_PrintQty; |
| | | PrintQtyCtl = oSystemParameter.omodel.BarCode_PrintQtyCtl; |
| | | UpdatePrintQtyCtl = oSystemParameter.omodel.BarCode_UpdatePrintQtyCtl; |
| | | } |
| | | } |
| | | |
| | | private void grdMain_DblClick(object sender, EventArgs e) |
| | |
| | | #region //æå°è®¾ç½® |
| | | |
| | | GridppReport Report; |
| | | int CurRows = 0; |
| | | string sBarCodeItemID = ""; //æ¡ç èªå¢å |
| | | |
| | | //é¢è§ |
| | | int CurRows = 0; |
| | | private void yl_Click(object sender, EventArgs e) |
| | | { |
| | | //æå°é¢è§æé |
| | | if (!DBUtility.ClsPub.Security_Log(ModRightNamePrint, 1, true, DBUtility.ClsPub.CurUserName)) |
| | | { |
| | | return; |
| | | } |
| | | //æå°å夿æ¡ç æ¯å¦è¶
è¿å
è®¸å¯æå°æ¬¡æ° |
| | | if (ReportPrintBegin()) |
| | | { |
| | | return; |
| | | } |
| | | |
| | | //éæ©æå°æ¨¡æ¿ |
| | | BLL.Gy_OpenTmp oFrm = new BLL.Gy_OpenTmp(); |
| | | oFrm.sBillName = ModName; |
| | |
| | | Sub_SetReport(oFrm.sOpenTmp); |
| | | Report.PrintPreview(false); |
| | | Thread.Sleep(1000); |
| | | } |
| | | } |
| | | |
| | | //æå° |
| | | private void dy_Click(object sender, EventArgs e) |
| | | { |
| | | //æå°é¢è§æé |
| | | if (!DBUtility.ClsPub.Security_Log(ModRightNamePrint, 1, true, DBUtility.ClsPub.CurUserName)) |
| | | { |
| | | return; |
| | | } |
| | | //æå°å夿æ¡ç æ¯å¦è¶
è¿å
è®¸å¯æå°æ¬¡æ° |
| | | if (ReportPrintBegin()) |
| | | { |
| | | return; |
| | | } |
| | | |
| | | //éæ©æå°æ¨¡æ¿ |
| | | BLL.Gy_OpenTmp oFrm = new BLL.Gy_OpenTmp(); |
| | | oFrm.sBillName = ModName; |
| | | oFrm.sBillModel = ModCaption; |
| | | oFrm.ShowDialog(); |
| | | if (oFrm.OKTag == Pub_Class.ClsPub.Enum_OKTag.OKTag_OK) |
| | | { |
| | | Sub_SetReport(oFrm.sOpenTmp); |
| | | Report.Print(false); |
| | | Thread.Sleep(1000); |
| | | } |
| | | } |
| | | |
| | | //æå°å夿æ¡ç æ¯å¦è¶
è¿å
è®¸å¯æå°æ¬¡æ° |
| | | private bool ReportPrintBegin() |
| | | { |
| | | DAL.ClsGy_BarCodeBill_Ctl oBar = new DAL.ClsGy_BarCodeBill_Ctl(); |
| | | string sHRemark = ""; |
| | | sBarCodeItemID = ""; |
| | | for (int i = 0; i < grdMain.SelectedRows.Count; i++) |
| | | { |
| | | sBarCodeItemID = sBarCodeItemID + "," + DBUtility.ClsPub.isLong(grdMain.Rows[grdMain.SelectedRows[i].Index].Cells[Fun_GetCol("HItemID")].Value).ToString(); |
| | | } |
| | | sBarCodeItemID = sBarCodeItemID.Remove(0, 1); |
| | | |
| | | if (PrintQtyCtl=="Y") |
| | | { |
| | | if (oBar.Set_CheckPrintQty(sBarCodeItemID, PrintQty, ref sHRemark)) |
| | | { |
| | | MessageBox.Show(sHRemark); |
| | | return true; |
| | | } |
| | | return false; |
| | | } |
| | | else |
| | | { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | |
| | | Report.LoadFromFile(DBUtility.ClsPub.AppPath + @"\" + sOpenTmp + ".grf"); //here . |
| | | Report.BeforePostRecord += new _IGridppReportEvents_BeforePostRecordEventHandler(ReportBeforePostRecord); |
| | | Report.FetchRecord += new _IGridppReportEvents_FetchRecordEventHandler(ReportFetchRecordByDataTable); |
| | | Report.PrintEnd += new _IGridppReportEvents_PrintEndEventHandler(ReportPrintEnd); |
| | | } |
| | | |
| | | //å¡«å
¥åæ®è¡¨å¤´ä¿¡æ¯ |
| | |
| | | } |
| | | //CurRows = CurRows + 1; |
| | | } |
| | | |
| | | //å¡«å
¥åæ®è¡¨ä½ä¿¡æ¯ |
| | | private void ReportFetchRecordByDataTable() |
| | | { |
| | | try |
| | |
| | | } |
| | | } |
| | | |
| | | #endregion |
| | | // |
| | | private void grdMain_Paint(object sender, PaintEventArgs e) |
| | | { |
| | | GraphicsGrid(); |
| | | } |
| | | |
| | | private void dy_Click(object sender, EventArgs e) |
| | | //æå°ç»æååå¡«æ¡ç æå°æ¬¡æ° |
| | | private void ReportPrintEnd() |
| | | { |
| | | DAL.ClsGy_BarCodeBill_Ctl oBar = new DAL.ClsGy_BarCodeBill_Ctl(); |
| | | //æå°å夿æ¡ç æ¯å¦å·²æå°è¿ |
| | | string sBarCode = ""; |
| | | string sRelQty = ""; |
| | | for (int i = 0; i < grdMain.SelectedRows.Count; i++) |
| | | if (UpdatePrintQtyCtl == "Y") |
| | | { |
| | | sBarCode = sBarCode + "," + DBUtility.ClsPub.isStrNull(grdMain.Rows[grdMain.SelectedRows[i].Index].Cells[Fun_GetCol("æ¡ç ç¼å·")].Value); |
| | | oBar.Set_UpdatePrintQty(sBarCodeItemID); |
| | | } |
| | | //if (oBar.Set_BPrintQty(sBarCode.Substring(1), ref sRelQty)) |
| | | //{ |
| | | // MessageBox.Show(sRelQty); |
| | | // return; |
| | | //} |
| | | |
| | | //éæ©æå°æ¨¡æ¿ |
| | | BLL.Gy_OpenTmp oFrm = new BLL.Gy_OpenTmp(); |
| | | //DAL.ClsGy_BarCodeBill_Ctl oBar = new DAL.ClsGy_BarCodeBill_Ctl(); |
| | | oFrm.sBillName = ModName; |
| | | oFrm.sBillModel = ModCaption; |
| | | oFrm.ShowDialog(); |
| | | if (oFrm.OKTag == Pub_Class.ClsPub.Enum_OKTag.OKTag_OK) |
| | | { |
| | | Sub_SetReport(oFrm.sOpenTmp); |
| | | Report.Print(false); |
| | | //oBar.Set_PrintQty(DBUtility.ClsPub.isStrNull(grdMain.Rows[CurRows].Cells[Fun_GetCol("æ¡ç ç¼å·")].Value)); |
| | | Thread.Sleep(1000); |
| | | } |
| | | |
| | | //æ¹éæ´æ°æ¡ç æå°æ¬¡æ° |
| | | oBar.Set_EPrintQty(sBarCode.Substring(1)); |
| | | } |
| | | |
| | | |
| | | |
| | | //è¿æ |
| | | private void dy2_Click(object sender, EventArgs e) |
| | | { |
| | | //éæ©æå°æ¨¡æ¿ |
| | |
| | | i++; |
| | | } |
| | | } |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | |
| | | // |
| | | private void grdMain_Paint(object sender, PaintEventArgs e) |
| | | { |
| | | GraphicsGrid(); |
| | | } |
| | | |
| | | private void yc_Click(object sender, EventArgs e) |
| | |
| | | private void zf_Click(object sender, EventArgs e) |
| | | { |
| | | //Sub_AbandonCheck(); |
| | | if (!ClsPub.Security_Log(ModRightNameDelete, 1, true, DBUtility.ClsPub.CurUserName)) |
| | | if (!DBUtility.ClsPub.Security_Log(ModRightNameDelete, 1, true, DBUtility.ClsPub.CurUserName)) |
| | | { |
| | | return; |
| | | } |
| | |
| | | private void fzf_Click(object sender, EventArgs e) |
| | | { |
| | | //this.Sub_CheckBill(); |
| | | if (!ClsPub.Security_Log(ModRightNameDelete, 1, true, DBUtility.ClsPub.CurUserName)) |
| | | if (!DBUtility.ClsPub.Security_Log(ModRightNameDelete, 1, true, DBUtility.ClsPub.CurUserName)) |
| | | { |
| | | return; |
| | | } |
| | |
| | | } |
| | | #endregion |
| | | |
| | | |
| | | #region å¢åè£
ç®±åå车äºä»¶ |
| | | [Route("Sc_ICMOBill/QK_PackingBillByXSBill")] |
| | | [HttpGet] |
| | |
| | | { |
| | | try |
| | | { |
| | | string sql = string.Format(@"select b.HMaterID,m.HNumber HMaterCode,m.HName HMaterName,b.HUnitID,u.HName HUnitName, |
| | | b.HQty HQty,a.HAddress HAddress,b.HDate HDate,b.HOutStockQty HOutStockQty,b.HInvoiceQty HInvoiceQty, |
| | | b.HTaxPrice HTaxPrice,b.HPrice HPrice,b.HMoney HMoney,a.HCusID HCusID,c.HName HCusName,a.HEmpID,e.HName HEmpName, |
| | | i.HInterID,i.HBillNo |
| | | from Xs_SeOrderBillMain a |
| | | left join Xs_SeOrderBillSub b on a.HInterID=b.HInterID |
| | | left join Gy_Material m on b.HMaterID=m.HItemID |
| | | left join Gy_Unit u on b.HUnitID=u.HItemID |
| | | left join Gy_Customer c on a.HCusID=c.HItemID |
| | | left join Gy_Employee e on a.HEmpID=e.HItemID |
| | | left join Sc_ICMOBillMain i on i.HSeOrderInterID=a.HInterID |
| | | where a.HInterID=(select HSeOrderInterID from Sc_ICMOBillMain where HBillNo='" + HBillNo + "')"); |
| | | string sql = string.Format(@"select a.HInterID,a.HBillNo,a.HMaterID,m.HName HMaterName, a.HUnitID,u.HName HUnitName,a.HPlanQty,a.HCusID, c.HName HCusName,a.HEmpID,e.HName HEmpName,a.HDeptID,d.HName HDeptName,a.HPlanEndDate,0 HMinQty,0 HTotalQty,0 HSpsQty |
| | | from Sc_ICMOBillMain a |
| | | left join Gy_Material m on a.HMaterID=m.HItemID |
| | | left join Gy_Unit u on a.HUnitID=u.HItemID |
| | | left join Gy_Customer c on a.HCusID=c.HItemID |
| | | left join Gy_Employee e on a.HEmpID=e.HItemID |
| | | left join Gy_Department d on a.HDeptID=d.HItemID |
| | | where HSeOrderInterID=(select HSeOrderInterID from Sc_ICMOBillMain where HBillNo='" + HBillNo + "')"); |
| | | |
| | | ds = oCN.RunProcReturn(sql, "Xs_SeOrderBillMain"); |
| | | ds = oCN.RunProcReturn(sql, "Sc_ICMOBillMain"); |
| | | if (ds.Tables[0].Rows.Count != 0 || ds != null) |
| | | { |
| | | objJsonResult.code = "1"; |
| | |
| | | string msg2 = sArray[0].ToString(); |
| | | string msg3 = sArray[1].ToString(); |
| | | string msg4 = sArray[2].ToString(); |
| | | string msg5 = sArray[3].ToString(); |
| | | |
| | | ListModels oListModels = new ListModels(); |
| | | DataSet ds = new DataSet(); |
| | | ds = oCN.RunProcReturn("select * from Xt_ORGANIZATIONS where HItemID=" + msg5, "Xt_ORGANIZATIONS"); |
| | | string OrgNum = ds.Tables[0].Rows[0]["HNumber"].ToString();//ç»ç»ä»£ç |
| | | DataSet Ds1 = new DataSet(); |
| | | try |
| | | { |
| | | //è¡¨ä½æ°æ® |
| | | //æ },{æ¥æåæ°ç» //廿ãåã |
| | | msg2 = msg2.Replace("\\", ""); |
| | | msg2 = msg2.Replace("\n", ""); //\n |
| | | //msg2 = msg2.Replace("'", "â"); |
| | | List<Models.ClsQK_PackingBill> ls = new List<Models.ClsQK_PackingBill>(); |
| | | ls = oListModels.getObjectByJson_QK_PackingBill(msg2); |
| | | |
| | | |
| | | //è·åå¹´ææ¥å¹¶æ¼æ¥æå符串 |
| | | string year = DateTime.Now.Year.ToString(); |
| | | string month = DateTime.Now.Month.ToString(); |
| | | string day = DateTime.Now.Day.ToString(); |
| | | string nowDate = year + month + day; |
| | | string materid = ""; |
| | | long sum = 0; |
| | | if (msg4=="ZZ") |
| | | { |
| | | //è¡¨ä½æ°æ® |
| | | //æ },{æ¥æåæ°ç» //廿ãåã |
| | | |
| | | msg2 = msg2.Replace("\\", ""); |
| | | msg2 = msg2.Replace("\n", ""); //\n |
| | | //msg2 = msg2.Replace("'", "â"); |
| | | List<Models.ClsQK_PackingBill> ls = new List<Models.ClsQK_PackingBill>(); |
| | | ls = oListModels.getObjectByJson_QK_PackingBill(msg2); |
| | | oCN.BeginTran(); |
| | | foreach (Models.ClsQK_PackingBill oItemSub in ls) |
| | | { |
| | | var HInterID = DBUtility.ClsPub.CreateBillID("3783", ref DBUtility.ClsPub.sExeReturnInfo); |
| | | var HBillNo = DBUtility.ClsPub.CreateBillCode("3783", ref DBUtility.ClsPub.sExeReturnInfo, true); |
| | | string sql = string.Format(@"Insert Sc_PackUnionBillMain(HYear,HPeriod,HBillType,HInterID,HDate,HBillNo,HBillStatus,HCheckItemNowID,HCheckItemNextID, |
| | | HRemark,HBacker,HChecker,HMaker,HMakeDate,HUpDater,HCloseMan,HCloseType,HDeleteMan, |
| | | HICMOInterID,HICMOBillNo,HBarCode_Pack,HMaterID,HUnitID,HWeight,HMWeight,HPWeight, |
| | | HProdOrgID,HDeptID,HEmpID,HSNum,HPackNum,HBarCode_Cus,HBatchNo,HBillSubType) |
| | | values('2022',1,'3783'," + HInterID + ",getdate(),'" + HBillNo + "',1,0,0," + |
| | | "'èªå¨ç»å®','','', " + msg3 + ",getdate(),'','',0,''," + |
| | | oItemSub.HInterID + ",'" + oItemSub.HBillNo + "','" + HBillNo + "'," + oItemSub.HMaterID + "," + oItemSub.HUnitID + "," + oItemSub.HWeight + "," + oItemSub.HMWeight + "," + oItemSub.HPWeight + "," + |
| | | "0,0," + oItemSub.HEmpID + ",0,0,'','','')"); |
| | | oCN.RunProc(sql); |
| | | //æ ¹æ®çææ¡æ°çæç¸åºæ°éæ¡ç |
| | | foreach (var item in oItemSub.HTotalQty.ToString()) |
| | | { |
| | | //çæå¯ä¸æ¡ç æ¡ç åç¼ = ç»ç»ä»£ç + ç©æä»£ç + å¹´ + æ + æ¥ |
| | | string sTMNumber = OrgNum + oItemSub.HMaterNumber + nowDate; |
| | | Ds1 = oCN.RunProcReturn("exec h_p_WMS_GetMaxNo '" + sTMNumber + "'", "h_p_WMS_GetMaxNo"); //è·åæå¤§æµæ°´å· |
| | | int LSH = ClsPub.isInt(Ds1.Tables[0].Rows[0][0]);//å¯ä¸ç |
| | | //è·åå
ç |
| | | long HInterID = DBUtility.ClsPub.CreateBillID_Prod("85", ref DBUtility.ClsPub.sExeReturnInfo); |
| | | oCN.RunProc("insert into Gy_BarCodeBill (HBarCode,HBarCodeType,HMaterID,HUnitID,HQty" + |
| | | ",HBatchNo,HSupID,HGroupID,HMaker,HMakeDate,HPrintQty,HinitQty" + |
| | | ",HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HEndQty " + |
| | | ",HBarcodeQtys,HBarcodeNo,HDeptID,HWhID,HSPID,HRemark " + |
| | | ",HCusID,HCusType,HEndDate,HWorkLineName,HBarCodeDate " + |
| | | ",HSTOCKORGID,HOWNERID,HSeOrderBillNo,HInterID " + |
| | | ",HGiveAwayFlag " + |
| | | ",HMaterName,HMaterModel,HPinfan,HAuxPropID,HMTONo,HInnerBillNo " + |
| | | ") values (" |
| | | + "'" + LSH + "','å¯ä¸æ¡ç '," + oItemSub.HMaterID.ToString() + "," + oItemSub.HUnitID.ToString() + "," + oItemSub.HMinQty.ToString() |
| | | + ",'',0,0,'" + msg3 + "',getdate(),0," + oItemSub.HMinQty.ToString() |
| | | + ", " + oItemSub.HInterID.ToString() + "," + oItemSub.HInterID.ToString() + ",'" + oItemSub.HBillNo + "','3710',''" |
| | | + ",1,1," + oItemSub.HDeptID.ToString() + ",0,0,''" |
| | | + ", " + oItemSub.HCusID.ToString() + ",'',getdate(),'',getdate()" |
| | | + ", " + msg5.ToString() + "," + OrgNum.ToString() + ",''," + HInterID.ToString() |
| | | + ",0" |
| | | + ",'" + oItemSub.HMaterName + "','','',0,'','')"); |
| | | |
| | | string sql1 = string.Format(@"update Sc_ICMOBillMain set HPlanQty=" + oItemSub.HSpsQty + " where HInterID=" + oItemSub.HInterID); |
| | | oCN.RunProc(sql1); |
| | | } |
| | | } |
| | | oCN.Commit(); |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "æ´è£
çææåï¼"; |
| | | objJsonResult.data = ds.Tables[0]; |
| | | objJsonResult.data = 1; |
| | | return objJsonResult; |
| | | } |
| | | else |
| | | { |
| | | msg2 = msg2.Replace("\\", ""); |
| | | msg2 = msg2.Replace("\n", ""); //\n |
| | | //msg2 = msg2.Replace("'", "â"); |
| | | List<Models.ClsQK_PackingBill> ls = new List<Models.ClsQK_PackingBill>(); |
| | | ls = oListModels.getObjectByJson_QK_PackingBill(msg2); |
| | | |
| | | var HInterID = DBUtility.ClsPub.CreateBillID("3783", ref DBUtility.ClsPub.sExeReturnInfo); |
| | | var HBillNo = DBUtility.ClsPub.CreateBillCode("3783", ref DBUtility.ClsPub.sExeReturnInfo, true); |
| | | oCN.BeginTran(); |
| | | foreach (Models.ClsQK_PackingBill oItemSub in ls) |
| | | { |
| | | sum += oItemSub.HMinQty; |
| | | materid = oItemSub.HMaterNumber; |
| | | //è·åå
ç |
| | | long HInterID2 = DBUtility.ClsPub.CreateBillID_Prod("85", ref DBUtility.ClsPub.sExeReturnInfo); |
| | | //çæå¯ä¸æ¡ç æ¡ç åç¼ = ç»ç»ä»£ç + ç©æä»£ç + å¹´ + æ + æ¥ |
| | | string sTMNumber = OrgNum + oItemSub.HMaterNumber + nowDate; |
| | | Ds1 = oCN.RunProcReturn("exec h_p_WMS_GetMaxNo '" + sTMNumber + "'", "h_p_WMS_GetMaxNo"); //è·åæå¤§æµæ°´å· |
| | | int LSH = ClsPub.isInt(Ds1.Tables[0].Rows[0][0]);//å¯ä¸ç |
| | | //æå
¥æ¡ç æ¡£æ¡ |
| | | oCN.RunProc("insert into Gy_BarCodeBill (HBarCode,HBarCodeType,HMaterID,HUnitID,HQty" + |
| | | ",HBatchNo,HSupID,HGroupID,HMaker,HMakeDate,HPrintQty,HinitQty" + |
| | | ",HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HEndQty " + |
| | | ",HBarcodeQtys,HBarcodeNo,HDeptID,HWhID,HSPID,HRemark " + |
| | | ",HCusID,HCusType,HEndDate,HWorkLineName,HBarCodeDate " + |
| | | ",HSTOCKORGID,HOWNERID,HSeOrderBillNo,HInterID " + |
| | | ",HGiveAwayFlag " + |
| | | ",HMaterName,HMaterModel,HPinfan,HAuxPropID,HMTONo,HInnerBillNo " + |
| | | ") values (" |
| | | + "'" + LSH + "','å¯ä¸æ¡ç '," + oItemSub.HMaterID.ToString() + "," + oItemSub.HUnitID.ToString() + "," + oItemSub.HMinQty.ToString() |
| | | + ",'',0,0,'" + msg3 + "',getdate(),0," + oItemSub.HMinQty.ToString() |
| | | + ", " + oItemSub.HInterID.ToString() + "," + oItemSub.HInterID.ToString() + ",'" + oItemSub.HBillNo + "','3710',''" |
| | | + ",1,1," + oItemSub.HDeptID.ToString() + ",0,0,''" |
| | | + ", " + oItemSub.HCusID.ToString() + ",'',getdate(),'',getdate()" |
| | | + ", " + msg5.ToString() + "," + OrgNum.ToString() + ",''," + HInterID2.ToString() |
| | | + ",0" |
| | | + ",'" + oItemSub.HMaterName + "','','',0,'','')"); |
| | | //æå
¥ç»æåå表 |
| | | string sql = string.Format(@"insert into Sc_PackUnionBillSub(HInterID,HEntryID,HCloseMan,HCloseType,HRemark, |
| | | HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType, |
| | | HRelationQty,HRelationMoney,HMaterID,HUnitID,HQty,HSourceID,HEquipID,HGroupID,HWorkerID, |
| | | HScanDate,HBarCode,HBarCode_Pack) |
| | | values("+HInterID+",'','',0,'èªå¨ç»å®',"+oItemSub.HInterID+",'',"+oItemSub.HBillNo+",'3710',"+ |
| | | "0,0,"+ oItemSub.HMaterID+","+ oItemSub.HUnitID+","+ oItemSub.HQty+", 0,0,0,0,"+ |
| | | "getdate(),'',"+HBillNo+")"); |
| | | values("+HInterID+",'','',0,'èªå¨ç»å®',"+oItemSub.HInterID+",'','"+oItemSub.HBillNo+"','3710',"+ |
| | | "0,0,"+ oItemSub.HMaterID+","+ oItemSub.HUnitID+","+ oItemSub.HPlanQty+", 0,0,0,0,"+ |
| | | "getdate(),'"+ LSH + "','" +HBillNo+"')"); |
| | | //æ´æ¹ç产订åçæ°é |
| | | string sql1 = string.Format(@"update Sc_ICMOBillMain set HPlanQty=" + oItemSub.HSpsQty + " where HInterID=" + oItemSub.HInterID); |
| | | |
| | | oCN.RunProc(sql); |
| | | oCN.RunProc(sql1); |
| | | } |
| | | //çæç»æå主表 |
| | | string sql2 = string.Format(@"Insert Sc_PackUnionBillMain(HYear,HPeriod,HBillType,HInterID,HDate,HBillNo,HBillStatus,HCheckItemNowID,HCheckItemNextID, |
| | | HRemark,HBacker,HChecker,HMaker,HMakeDate,HUpDater,HCloseMan,HCloseType,HDeleteMan,HICMOInterID,HICMOBillNo, |
| | | HBarCode_Pack,HMaterID,HUnitID,HWeight,HMWeight,HPWeight, |
| | | HProdOrgID,HDeptID,HEmpID,HSNum,HPackNum,HBarCode_Cus,HBatchNo,HBillSubType) |
| | | values('2022',1,'3783'," + HInterID + ",getdate(),'" + HBillNo + "',1,0,0," + |
| | | "'èªå¨ç»å®','','', " + msg3 + ",getdate(),'','',0,'',0,0,'" + |
| | | HBillNo + "',0,0,0,0,0" + |
| | | "'èªå¨ç»å®','','', '" + msg3 + "',getdate(),'','',0,'',0,0,'" + |
| | | HBillNo + "',0,0,0,0,0," + |
| | | "0,0,0,0,0,'','','')"); |
| | | oCN.RunProc(sql2); |
| | | //忬¡çæå¯ä¸ç |
| | | //è·åå
ç |
| | | long HInterID3 = DBUtility.ClsPub.CreateBillID_Prod("85", ref DBUtility.ClsPub.sExeReturnInfo); |
| | | //çæå¯ä¸æ¡ç æ¡ç åç¼ = ç»ç»ä»£ç + ç©æä»£ç + å¹´ + æ + æ¥ |
| | | string sTMNumber1 = OrgNum + materid+nowDate; |
| | | Ds1 = oCN.RunProcReturn("exec h_p_WMS_GetMaxNo '" + sTMNumber1 + "'", "h_p_WMS_GetMaxNo"); //è·åæå¤§æµæ°´å· |
| | | int LSH1 = ClsPub.isInt(Ds1.Tables[0].Rows[0][0]);//å¯ä¸ç |
| | | string sql3 = string.Format(@"insert into Gy_BarCodeBill (HBarCode,HBarCodeType,HMaterID,HUnitID,HQty" + |
| | | ",HBatchNo,HSupID,HGroupID,HMaker,HMakeDate,HPrintQty,HinitQty" + |
| | | ",HSourceInterID,HSourceEntryID,HSourceBillNo,HSourceBillType,HEndQty " + |
| | | ",HBarcodeQtys,HBarcodeNo,HDeptID,HWhID,HSPID,HRemark " + |
| | | ",HCusID,HCusType,HEndDate,HWorkLineName,HBarCodeDate " + |
| | | ",HSTOCKORGID,HOWNERID,HSeOrderBillNo,HInterID " + |
| | | ",HGiveAwayFlag " + |
| | | ",HMaterName,HMaterModel,HPinfan,HAuxPropID,HMTONo,HInnerBillNo " + |
| | | ") values (" |
| | | + "'" + LSH1 + "','å¯ä¸æ¡ç ','" + materid.ToString() + "',0," + sum.ToString() |
| | | + ",'',0,0,'" + msg3 + "',getdate(),0," + sum.ToString() |
| | | + ", 0,0,'" + HBillNo + "','3710',''," |
| | | + sum.ToString() + "," + HInterID.ToString() + ",0,0,0,''" |
| | | + ",0,'',getdate(),'',getdate()" |
| | | + ", " + msg5.ToString() + "," + OrgNum.ToString() + ",''," + HInterID3.ToString() |
| | | + ",0" |
| | | + ",'','','',0,'','')"); |
| | | |
| | | oCN.RunProc(sql3); |
| | | oCN.Commit(); |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | |
| | | } |
| | | } |
| | | #endregion |
| | | |
| | | # region[å¢åè£
ç®±ç¹å»ä¸»è¡¨å¸¦åºä»è¡¨] |
| | | [Route("Sc_ICMOBillController/QK_GetPackingBillListByMainID")] |
| | | [HttpGet] |
| | | public object QK_GetPackingBillListByMainID(string HInterID) |
| | | { |
| | | |
| | | DataSet ds; |
| | | try |
| | | { |
| | | SQLHelper.ClsCN oCN = new SQLHelper.ClsCN(); |
| | | //è·åä¿å
»é¡¹ç®ç¼è¾æ°æ® |
| | | string sql = string.Format(@"select a.HInterID hmainid,a.HBarCode,a.HBillType,a.HBarCodeType, |
| | | a.HMaterID,m.HName HMaterName,a.HUnitID,u.HName HUnitName, |
| | | a.HEmpID,e.HName HEmpName,a.HDeptID,d.HItemID HDeptName,P.HBarCode_Pack, |
| | | a.HMakeDate å¶åæ¥æ,a.HMaker å¶å人 |
| | | from Gy_BarCodeBill a |
| | | left join Gy_Material m on a.HMaterID=m.HItemID |
| | | left join Gy_Unit u on a.HUnitID=u.HItemID |
| | | left join Gy_Employee e on a.HEmpID=e.HItemID |
| | | left join Gy_Department d on a.HDeptID=d.HItemID |
| | | left join Sc_PackUnionBillMain p on a.HSourceInterID=p.HInterID |
| | | where a.HBarCode=(select HBarCode from Sc_PackUnionBillSub where HInterID= |
| | | (select HBarcodeNo from Gy_BarCodeBill where HBarCode='" + HInterID + "'))"); |
| | | ds = oCN.RunProcReturn(sql, "Sc_PackUnionBillSub"); |
| | | |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "è·åä¿¡æ¯æåï¼"; |
| | | objJsonResult.data = ds.Tables[0]; |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "没æè¿åä»»ä½è®°å½ï¼" + e.ToString(); |
| | | objJsonResult.data = null; |
| | | } |
| | | return objJsonResult; |
| | | } |
| | | #endregion |
| | | |
| | | #region[å¢åè£
ç®±å表] |
| | | /// <summary> |
| | | /// 模å
·ä¿å
»è®°å½è¡¨å表 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route("Sc_ICMOBillController/QK_GetPackingBillList")] |
| | | [HttpGet] |
| | | public object QK_GetPackingBillList(string sWhere) |
| | | { |
| | | try |
| | | { |
| | | |
| | | ds = QK_GetPackingBillList_s(sWhere); |
| | | |
| | | //if (ds.Tables[0].Rows.Count != 0 || ds != null) |
| | | //{ |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "Sucessï¼"; |
| | | objJsonResult.data = ds.Tables[0]; |
| | | return objJsonResult; |
| | | //} |
| | | //else |
| | | //{ |
| | | //objJsonResult.code = "0"; |
| | | //objJsonResult.count = 0; |
| | | //objJsonResult.Message = "æ æ°æ®"; |
| | | //objJsonResult.data = null; |
| | | //return objJsonResult; |
| | | //} |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "没æè¿åä»»ä½è®°å½ï¼" + ex.ToString(); |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | |
| | | #region sqlè¯å¥ |
| | | |
| | | |
| | | public static DataSet QK_GetPackingBillList_s(string sWhere) |
| | | { |
| | | if (sWhere == null || sWhere.Equals("")) |
| | | { |
| | | return new SQLHelper.ClsCN().RunProcReturn("select * from h_v_QK_PackedBillList order by hmainid desc", "h_v_QK_PackedBillList"); |
| | | } |
| | | else |
| | | { |
| | | string sql1 = "select * from h_v_QK_PackedBillList where 1 = 1 "; |
| | | string sql = sql1 + sWhere + "order by hmainid desc"; |
| | | return new SQLHelper.ClsCN().RunProcReturn(sql, "h_v_QK_PackedBillList"); |
| | | |
| | | } |
| | | //return new SQLHelper.ClsCN().RunProcReturn("select * from h_v_Sc_MouldMaintainBillList ", "h_v_Sc_MouldMaintainBillList"); |
| | | } |
| | | #endregion |
| | | |
| | | #endregion |
| | | |
| | | #region[å¢åè£
ç®±å表-å é¤] |
| | | /// <summary> |
| | | /// å¢åè£
ç®±å表-å é¤ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [Route("Sc_ICMOBillController/DeleteQK_GetPackingBillList")] |
| | | [HttpGet] |
| | | public object DeleteQK_GetPackingBillList(string HInterID,string Flag) |
| | | { |
| | | try |
| | | { |
| | | oCN.BeginTran(); |
| | | if (Flag=="0") |
| | | { |
| | | DataSet ds = new DataSet(); |
| | | ds = oCN.RunProcReturn("select * from Gy_BarCodeBill where HItemID=" + HInterID, "Gy_BarCodeBill"); |
| | | DataRow dr = ds.Tables[0].Rows[0]; |
| | | string sql = string.Format(@"delete from Gy_BarCodeBill where HItemID=" + HInterID); |
| | | string sql1 = string.Format(@"update Sc_ICMOBillMain set HPlanQty=HPlanQty+" + dr["HQty"] +" where HInterID=(select HSourceInterID from Gy_BarCodeBill where HItemID="+ HInterID + ")"); |
| | | oCN.RunProc(sql); |
| | | oCN.RunProc(sql1); |
| | | } |
| | | else |
| | | { |
| | | //éè¿æ¡ç idæ¾å°ææ¡ç ï¼éè¿ææ¡ç æ¾å°ç»æåå表ä¸çå¯ä¸ç |
| | | string sql2 = "select HBarCode from Sc_PackUnionBillSub where HInterID=(select HBarcodeNo from Gy_BarCodeBill where HItemID=" + HInterID; |
| | | //string sql2 = "select HBarCode from Sc_PackUnionBillSub where HInterID=(select HBarcodeNo from Gy_BarCodeBill where HItemID=3250)"; |
| | | DataSet ds1 = oCN.RunProcReturn(sql2, "Sc_PackUnionBillSub"); |
| | | DataTable dt = ds1.Tables[0]; |
| | | //éåæ¾å°çå¯ä¸ç å 餿¡ç æ¡£æ¡éçç¸å
³æ°æ®ï¼åæ¶éè¿å¯ä¸ç çæºåæ¾å°çäº§è®¢åæ´æ¹ç产订åçæ°é |
| | | if (dt.Rows.Count > 0) |
| | | { |
| | | foreach (DataRow dr in dt.Rows) |
| | | { |
| | | DataSet ds = new DataSet(); |
| | | ds = oCN.RunProcReturn("select * from Gy_BarCodeBill where HBarCode='" + dr["HBarCode"].ToString()+"'", "Gy_BarCodeBill"); |
| | | DataRow dr1 = ds.Tables[0].Rows[0]; |
| | | |
| | | string sql = string.Format(@"delete from Gy_BarCodeBill where HBarCode='" + dr["HBarCode"].ToString()+"'"); |
| | | string sql1 = string.Format(@"update Sc_ICMOBillMain set HPlanQty=HPlanQty+" + dr1["HQty"] + " where HInterID=(select HSourceInterID from Gy_BarCodeBill where HBarCode='" + dr["HBarCode"].ToString() + "')"); |
| | | oCN.RunProc(sql); |
| | | oCN.RunProc(sql1); |
| | | } |
| | | } |
| | | |
| | | //éåå®åå é¤éè¿æ¡ç idæ¾å°ææ¡ç ï¼éè¿ææ¡ç æ¾å°ç»æååè¡¨çæ°æ®ï¼ä»¥åä¸»è¡¨æ°æ® |
| | | string sql3 = string.Format(@"delect from Sc_PackUnionBillSub where HInterID=(select HBarcodeNo from Gy_BarCodeBill where HItemID="+ HInterID); |
| | | string sql4 = string.Format(@"delect from Sc_PackUnionBillMain where HInterID=(select HBarcodeNo from Gy_BarCodeBill where HItemID=" + HInterID); |
| | | //å 餿大çåæçå¯ä¸ç |
| | | string sql5 = string.Format(@"delete from Gy_BarCodeBill where HItemID=" + HInterID); |
| | | oCN.RunProc(sql3); |
| | | oCN.RunProc(sql4); |
| | | oCN.RunProc(sql5); |
| | | } |
| | | oCN.Commit(); |
| | | objJsonResult.code = "1"; |
| | | objJsonResult.count = 1; |
| | | objJsonResult.Message = "å 餿å"; |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | |
| | | } |
| | | catch (Exception ex) |
| | | { |
| | | oCN.RollBack(); |
| | | objJsonResult.code = "0"; |
| | | objJsonResult.count = 0; |
| | | objJsonResult.Message = "å é¤å¤±è´¥" + ex.ToString(); |
| | | objJsonResult.data = null; |
| | | return objJsonResult; |
| | | } |
| | | } |
| | | #endregion |
| | | } |
| | | } |
| | |
| | | |
| | | public List<Models.ClsQK_PackingBill> getObjectByJson_QK_PackingBill(string jsonString) |
| | | { |
| | | jsonString = "[" + jsonString.ToString() + "]"; |
| | | //jsonString = "[" + jsonString.ToString() + "]"; |
| | | List<Models.ClsQK_PackingBill> list = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Models.ClsQK_PackingBill>>(jsonString); |
| | | return list; |
| | | } |
| | |
| | | public class ClsQK_PackingBill |
| | | { |
| | | public Int64 HMaterID; |
| | | public string HMaterCode; |
| | | public string HMaterNumber; |
| | | public string HMaterName; |
| | | public Int64 HUnitID; |
| | | public string HUnitName; |
| | | public Int64 HQty; |
| | | public Int64 HPlanQty; |
| | | public Int64 HMinQty; |
| | | public Int64 HTotalQty; |
| | | public Int64 HSpsQty; |
| | | public string HAddress; |
| | | public string HDate; |
| | | public string HOutStockQty; |
| | | public string HInvoiceQty; |
| | | public string HTaxPrice; |
| | | public string HPrice; |
| | | public string HMoney; |
| | | public Int64 HCusID; |
| | | public string HCusName; |
| | | public Int64 HEmpID; |
| | | public string HEmpName; |
| | | public string HWeight; |
| | | public string HMWeight; |
| | | public string HPWeight; |
| | | public Int64 HDeptID; |
| | | public string HDeptName; |
| | | public string HPlanEndDate; |
| | | public Int64 HInterID; |
| | | public string HBillNo; |
| | | } |
New file |
| | |
| | | ------------------------2022/3/25 11:03:00------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:03:00------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:03:00------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='ææºäºä¸é¨' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:04:01------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:04:01------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:04:01------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='ææºäºä¸é¨' and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and é¨é¨åç§° like '%1%' and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:04:10------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:04:10------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:04:10------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='ææºäºä¸é¨' and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:39:37------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:39:37------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:39:37------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='ææºäºä¸é¨' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:39:46------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:39:46------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:39:46------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='ææºäºä¸é¨' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:05------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:06------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:06------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:26------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:26------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:26------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and é¨é¨ like '%1%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:27------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:27------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:27------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:32------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:32------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:32------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and åºåç»ç» like '%1%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:32------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:33------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:33------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:37------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:37------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:37------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and ç©æä»£ç like '%20204.0080%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:38------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:39------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:39------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:48------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:48------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:48------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and 模å
·ä»£ç like '%PAK100.0420204.006900023%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:49------------------------------ |
| | | æåï¼ |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:49------------------------------ |
| | | ææé |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:49------------------------------ |
| | | select * from h_v_Sc_MouldProdInHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25'order by hmainid desc |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 11:03:40------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='ææºäºä¸é¨' |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:40:53------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:41:01------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:41:05------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:41:08------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:41:26------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:41:45------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' |
| | | |
New file |
| | |
| | | ------------------------2022/3/25 16:41:57------------------------------ |
| | | select * from h_v_Sc_MouldProdOutHouseBillList where åºåç»ç»='èæµ·å®ä¸éå¢' |
| | | |
New file |
| | |
| | | 2022/3/25 11:03:00 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';ææºäºä¸é¨ |
| | | |
| | | 2022/3/25 11:04:01 and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and é¨é¨åç§° like '%1%' and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';ææºäºä¸é¨ |
| | | |
| | | 2022/3/25 11:04:10 and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and CONVERT(varchar(100),æ¥æ, 23) >= '2021-10-01' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';ææºäºä¸é¨ |
| | | |
| | | 2022/3/25 16:39:37 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';ææºäºä¸é¨ |
| | | |
| | | 2022/3/25 16:39:46 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';ææºäºä¸é¨ |
| | | |
| | | 2022/3/25 16:40:06 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:26 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and é¨é¨ like '%1%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:27 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:32 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and åºåç»ç» like '%1%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:33 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:37 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and ç©æä»£ç like '%20204.0080%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:39 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:48 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25' and 模å
·ä»£ç like '%PAK100.0420204.006900023%' and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | | |
| | | 2022/3/25 16:40:49 and CONVERT(varchar(100),æ¥æ, 23) >= '2022-02-23' and CONVERT(varchar(100),æ¥æ, 23) <= '2022-03-25';èæµ·å®ä¸éå¢ |
| | |
| | | <WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected> |
| | | <NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile> |
| | | <NameOfLastUsedPublishProfile>D:\Git\houduan\WebAPI\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile> |
| | | <NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile> |
| | | <NameOfLastUsedPublishProfile>D:\æºäºMES\Lay-Api\MES-WEB-API\WebAPI\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile> |
| | | <LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig> |
| | | <UseIISExpress>false</UseIISExpress> |
| | | <Use64BitIISExpress /> |