WebAPI/Controllers/SBGL/SB_EquipICMOTechParamBillController.cs
@@ -334,7 +334,24 @@
                            return objJsonResult;
                        }
                        else
                        {
                        {
                            //系统参数  自动审核
                            string sReturn = "";
                            if (oSystemParameter.ShowBill(ref sReturn) == true)
                            {
                                // 拼接两个参数:安灯,NG参数
                                string oa = oSystemParameter.omodel.SB_EquipICMOTechParamBill_OAErrMsg;//系统参数  是否进行安灯
                                string ng = oSystemParameter.omodel.SB_EquipICMOTechParamBill_ErrMsg;//系统参数  是否发送NG工艺参数信息
                                // 用逗号拼接,前端按逗号拆分
                                objJsonResult.Verify = oa + "," + ng;
                            }
                            else
                            {
                                // 失败时给默认值
                                objJsonResult.Verify = "N,N";
                            }
                            objJsonResult.code = "0";
                            objJsonResult.count = 1;
                            objJsonResult.Message = "单据号:"+ oBill.omodel.HBillNo+ " 审核成功!";
@@ -777,12 +794,13 @@
                //返回列表信息
                ds = oCn.RunProcReturn(sql, "h_p_SB_EquipCMOTechParamBillListEdit_GetCurrRecord");
                if (ds == null || ds.Tables[0].Rows.Count == 0)
                {
                    objJsonResult.code = "0";
                    objJsonResult.count = 0;
                    objJsonResult.Message = "未查询到该设备工艺参数订单点检表,请刷新数据后重新选择!";
                    objJsonResult.data = null;
                    objJsonResult.count = int.Parse(ds.Tables[1].Rows[0]["count"].ToString());
                    objJsonResult.Message = "成功!";
                    objJsonResult.data = ds.Tables[0];
                    return objJsonResult;
                }
                else