private void toolStripMenuItem1_Click(object sender, EventArgs e)
 {
     try
     {
         if (!string.IsNullOrEmpty(strBefore_orderId))
         {
             List<SQLObj> listSql = new List<SQLObj>();
             UpdateMaintainInfo(listSql, strBefore_orderId, "", "0");
             DBHelper.BatchExeSQLMultiByTrans("更新前置单据状体", listSql);
         }
         UCRepairBalanceImport import = new UCRepairBalanceImport();
         import.uc = this;
         import.ShowDialog();
     }
     catch (Exception ex)
     {
         HXCPcClient.GlobalStaticObj.GlobalLogService.WriteLog(ex);
     }
 }
 private void toolStripMenuItem1_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(strBefore_orderId))
     {
         List<SQLObj> listSql = new List<SQLObj>();
         UpdateMaintainInfo(listSql, strBefore_orderId, "", "0");
         DBHelper.BatchExeSQLMultiByTrans("更新前置单据状体", listSql);
     }
     UCRepairBalanceImport import = new UCRepairBalanceImport();
     import.uc = this;
     import.ShowDialog();
 }