yangle
2023-05-26 c5dba804d497aca69c6971e082d954e7d13d02d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace MES
{
    public partial class Sc_ProcessMove : Form
    {
        public Sc_ProcessMove()
        {
            InitializeComponent();
        }
 
        private void cmdOK_Click(object sender, EventArgs e)
        {
 
        }
        //public long HInterID;
        //public long HICMOInterID;
        //public string HICMOBillNo;
        //public DateTime HDate;
        //public double HQty;
        //public double sReturnQty;
        //public int IsOk;
 
        //private void cmdCancel_Click(object sender, EventArgs e)
        //{
        //    IsOk = 2;
        //    this.Visible = false;
        //}
 
        //private void cmdOK_Click(object sender, EventArgs e)
        //{
        //    IsOk = 1;
        //    Save();
        //    sReturnQty = DBUtility.ClsPub.isDoule(txtHChangeQty.Text);
        //    this.Visible = false;
        //}
 
        //private void Xs_SellOutDayReportDlg_Activated(object sender, EventArgs e)
        //{
        //}
 
        //private void timer1_Tick(object sender, EventArgs e)
        //{
        //    timer1.Enabled = false;
        //    IsOk = 0;
        //    this.txtHICMOInterID.Text = HICMOBillNo;
        //    //this.txtHICMOInterID.Tag = HICMOInterID.ToString();
        //    this.txtHDate.Text = HDate.ToShortDateString();
        //    this.txtHQty.Text = HQty.ToString();
        //    this.txtHChangeQty.Text = "";
        //}
 
        //private void Save()
        //{
        //    SQLHelper.ClsCN oCn = new SQLHelper.ClsCN();
        //    oCn.RunProc("exec h_p_Sc_WorkBillAutoSortBill_ChangeQty " + HInterID.ToString() + ",'" + HDate.ToShortDateString() + "'," + DBUtility.ClsPub.isDoule(txtHChangeQty.Text).ToString());
        //    MessageBox.Show("±ä¸üÅųÌÊýÁ¿³É¹¦£¡", "Ìáʾ");
        //}
 
        //private void txtHChangeQty_TextChanged(object sender, EventArgs e)
        //{
 
        //}
 
 
 
 
    }
}