zzr99
2022-06-17 b84a56f056942b035eb4e366751b1435e44b8bb3
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace OAM
{
    public partial class frmWorkBillView_Dlg : Form
    {
        public frmWorkBillView_Dlg()
        {
            InitializeComponent();
        }
        public long HInterID;
        public String HType;
        public int isOK;
        private void cmdHEvaluateStatusID_Click(object sender, EventArgs e)
        {
        }
 
        private void cmdSend_Click(object sender, EventArgs e)
        {
            if (HType == "yzpj" && (DBUtility.ClsPub.isLong(txtHEvaluateStatusID.SelectedIndex) == 0 || DBUtility.ClsPub.isLong(txtHEvaluateStatusID.SelectedIndex) == -1))
            {
                MessageBox.Show("请输入评价!");
                return;
            }
            isOK = 1;
            this.Hide();
        }
 
        private void cmdCancel_Click(object sender, EventArgs e)
        {
            isOK = 0;
            this.Close();
        }
    }
}