You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using DevExpress.XtraEditors;
using System;
using ZJ_BYD.Common;
using ZJ_BYD.DB;
using ZJ_BYD.Untils;
namespace ZJ_BYD
{
public partial class BindOrder : XtraForm
{
public delegate void ChangeOrderCodeHandler(string code);
public event ChangeOrderCodeHandler ChangeOrderCode;
public BindOrder()
{
InitializeComponent();
}
private void btnOk_Click(object sender, EventArgs e)
{
var mskCode = MskCodeHelper.QueryMask_code(Program.ActiveStatinCode);
var orderNo = txtOrderNo.Text.Trim();
if (!string.IsNullOrWhiteSpace(orderNo))
{
ChangeOrderCode(orderNo);
var mesResult = RequestMes.BindOrder(mskCode.Site, mskCode.Resource, CurrentUser.UserName, CurrentUser.PassWord, orderNo);
LogHelper.WriteLog($"工单{orderNo}绑定成功MES返回结果{mesResult.msg}");
this.Close();
}
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}