| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- using Core.Mes.Client.Comm.Tool;
- using CoreFS.CA06;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.PlnSaleOrd.工序排产
- {
- public partial class FrmMergeJgxM : FrmBase
- {
- private string judgeStoveNo = "";
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- private string batchNo = "";
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- private string num = "";
- public string Num
- {
- get { return num; }
- set { num = value; }
- }
- public FrmMergeJgxM()
- {
- InitializeComponent();
- }
- private void FrmMergeJgxM_Load(object sender, EventArgs e)
- {
- }
- private void ultraButton1_Click(object sender, EventArgs e)
- {
- if (txtJudgeStoveNo.Text.ToString().Equals(""))
- {
- MessageUtil.ShowTips("请输入判定炉号!");
- return;
- }
- if (txtBatchNo.Text.ToString().Equals(""))
- {
- MessageUtil.ShowTips("请输入批号!");
- return;
- }
- if (ultraNumericEditor2.Value.ToString().Equals("0"))
- {
- MessageUtil.ShowTips("请输入装炉支数!");
- return;
- }
- JudgeStoveNo = txtJudgeStoveNo.Text.ToString();
- BatchNo = txtBatchNo.Text.ToString();
- Num = ultraNumericEditor2.Value.ToString();
- this.DialogResult = System.Windows.Forms.DialogResult.OK;
- }
- private void ultraButton2_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|