|
@@ -1,1441 +0,0 @@
|
|
|
-using Oracle.ManagedDataAccess.Client;
|
|
|
-using System;
|
|
|
-using System.Collections.Generic;
|
|
|
-using System.ComponentModel;
|
|
|
-using System.Data;
|
|
|
-using System.Runtime.InteropServices;
|
|
|
-using System.Text;
|
|
|
-using System.Web.Script.Serialization;
|
|
|
-
|
|
|
-namespace UMESDLLService
|
|
|
-{
|
|
|
-
|
|
|
- [Guid("99D0E96E-1058-415D-9874-D34537625284")]
|
|
|
- [InterfaceType(ComInterfaceType.InterfaceIsDual)]
|
|
|
- public interface IMESHelper
|
|
|
- {
|
|
|
- [DispId(20)]
|
|
|
- bool CheckRoutePassed(string iSN, string iResCode, out string oErrMessage);
|
|
|
- bool CheckRoutePassed_OnlyOK(string iSN, string iResCode, out string oErrMessage);
|
|
|
- bool GetRcardMOInfo(string iSN, out string oMoCode, out string oErrMessage);
|
|
|
- bool CheckUserAndResourcePassed(string iUserCode, string iResCode, string iPassWord, out string oErrMessage);
|
|
|
- bool GetAddressRangeByMO(string iSN, out string oWIFI, out string oBT, out string oCode1, out string oCode2, out string oCdoe3, out string oErrMessage);
|
|
|
- bool SetAddressInfo(string iSN, string iWIFI, string iBT, string iCode1, string iCode2, string iCode3, out string oErrorMessage);
|
|
|
- bool GetMaster(out string oMaster);
|
|
|
- bool SetMaster(string Master);
|
|
|
- bool SetTestDetail(string iSN, string iTestResult, string iResCode, string[] iTestDetail, out string oErrMessage);
|
|
|
- bool GetMEIOrNetCodeRange(string iSnCode, string iIMEI1, string iNetCode, out string oIMEI1, out string oIMEI2, out string oMEID, out string oNetCode, out string oPSN, out string oID1, out string oID2, out string oID3, out string oID4, out string oID5, out string oErrMessage);
|
|
|
- bool SetIMEIInfo(string iSN, string iIMEI1, string iIMEI2, string iIMEI3, string iMEID, string iNET, string iID1, string iID2, string iID3, out string oErrMessage);
|
|
|
- bool GetMobileAllInfo(string iSnCode, out string oWIFI, out string oBT, out string oCode1, out string oCode2, out string oCode3, out string oIMEI1, out string oIMEI2, out string oMEID, out string oNetCode, out string oPSN, out string oID1, out string oID2, out string oID3, out string oID4, out string oID5, out string oErrorMessage);
|
|
|
- bool SetMobileData(string iTSN, string iSN, string iSourceCode, string iOperator, string iResult, string iErrCode, string flag, out string oErrorMessage);
|
|
|
- bool SetPcbaData(string iSN, string iResCode, string iOperator, string iResult, string iErrCode, out string oErrMessage);
|
|
|
- bool GoMo(string iMO, string iSN, string iResCode, out string oErrMessage);
|
|
|
- bool GetSoftVersion(string iSN, out string oSoftVersion, out string oErrMessage);
|
|
|
- bool GetProductRelation(string iSN, out string oWIFI, out string oBT, out string IMEI1, out string IMEI2, out string IMEI3, out string oNetCode, out string oMEID, out string oErrMessage);
|
|
|
- bool GetSNList(string iMaCode, out string[] TSN_List, out string[] SN_List, out string[] TSN_Rule, out string[] SN_Rule, out string oErrMessage);
|
|
|
- bool GetMaterialInfo(string iSN, out string oResult, out string oErrMessage);
|
|
|
- bool GetPrintLabel(string iSN, out string oResult, out string oErrMessage);
|
|
|
- }
|
|
|
-
|
|
|
- [Guid("41EAB546-6EF4-464A-895A-9C34013A5D8C")]
|
|
|
- [ComSourceInterfaces(typeof(IMESHelper))]
|
|
|
- [ClassInterface(ClassInterfaceType.None)]
|
|
|
- [ProgId("UMESDLLService.MESHelper")]
|
|
|
- public class MESHelper : IMESHelper
|
|
|
- {
|
|
|
-
|
|
|
- StringBuilder sql = new StringBuilder();
|
|
|
-
|
|
|
- List<string> sqls = new List<string>();
|
|
|
-
|
|
|
- private string ConnectionStrings = "Data Source=81.71.42.91/orcl;User ID=MES;PassWord=select!#%*(;";
|
|
|
-
|
|
|
- private OracleConnection connection;
|
|
|
-
|
|
|
- private OracleCommand command = null;
|
|
|
-
|
|
|
- DataTable MasterDB;
|
|
|
-
|
|
|
- public MESHelper()
|
|
|
- {
|
|
|
- connection = new OracleConnection(ConnectionStrings);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("序列号对应工序检测")]
|
|
|
- public bool CheckRoutePassed(string iSN, string iResCode, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string[] param = new string[] { "", iResCode, iSN, "", "", "", oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_macode", "v_i_sourcecode", "v_i_sncode", "v_i_usercode", "v_o_macode", "v_o_msid", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_CHECKSTEPSNANDMACODE", ParamName, ref param);
|
|
|
- oErrMessage = param[6];
|
|
|
- DataTable dt = (DataTable)ExecuteSql("select ms_status,ms_stepcode,ms_nextstepcode from makeserial where ms_id=( select max(ms_id) from makeserial where ms_sncode in ( select '" + iSN + "' from dual union select sn from makesnrelation where beforesn='" + iSN + "' and sn<>' ' union select beforesn from makesnrelation where sn='" + iSN + "' and beforesn<>' '))", "select");
|
|
|
- string ms_status = "";
|
|
|
- string ms_stepcode = "";
|
|
|
- string ms_nextstepcode = "";
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- ms_status = dt.Rows[0]["ms_status"].ToString();
|
|
|
- ms_stepcode = dt.Rows[0]["ms_stepcode"].ToString();
|
|
|
- ms_nextstepcode = dt.Rows[0]["ms_nextstepcode"].ToString();
|
|
|
- }
|
|
|
- string stepcode = GetStepCodeBySource(iResCode);
|
|
|
- if (ms_nextstepcode != "" && ms_nextstepcode != stepcode)
|
|
|
- {
|
|
|
- oErrMessage = "当前序列号下一工序" + ms_nextstepcode;
|
|
|
- return false;
|
|
|
- }
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null" || (ms_status == "3" && stepcode == ms_stepcode))
|
|
|
- {
|
|
|
- if (ms_status == "3")
|
|
|
- {
|
|
|
- oErrMessage = "";
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("序列号对应工序检测,不允许测试NG序列号")]
|
|
|
- public bool CheckRoutePassed_OnlyOK(string iSN, string iResCode, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string[] param = new string[] { "", iResCode, iSN, "", "", "", oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_macode", "v_i_sourcecode", "v_i_sncode", "v_i_usercode", "v_o_macode", "v_o_msid", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_CHECKSTEPSNANDMACODE", ParamName, ref param);
|
|
|
- oErrMessage = param[6];
|
|
|
- DataTable dt = (DataTable)ExecuteSql("select ms_status,ms_stepcode,ms_nextstepcode from makeserial where ms_id=( select max(ms_id) from makeserial where ms_sncode in ( select '" + iSN + "' from dual union select sn from makesnrelation where beforesn='" + iSN + "' and sn<>' ' union select beforesn from makesnrelation where sn='" + iSN + "' and beforesn<>' '))", "select");
|
|
|
- string ms_status = "";
|
|
|
- string ms_stepcode = "";
|
|
|
- string ms_nextstepcode = "";
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- ms_status = dt.Rows[0]["ms_status"].ToString();
|
|
|
- ms_stepcode = dt.Rows[0]["ms_stepcode"].ToString();
|
|
|
- ms_nextstepcode = dt.Rows[0]["ms_nextstepcode"].ToString();
|
|
|
- }
|
|
|
- string stepcode = GetStepCodeBySource(iResCode);
|
|
|
- if (ms_nextstepcode != "" && ms_nextstepcode != stepcode)
|
|
|
- {
|
|
|
- oErrMessage = "当前序列号下一工序" + ms_nextstepcode;
|
|
|
- return false;
|
|
|
- }
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null" || (ms_status == "3" && stepcode == ms_stepcode))
|
|
|
- {
|
|
|
- return true;
|
|
|
- }
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private bool CheckUserLogin(string iUserCode, string iPassWord, out string oErrorMessage)
|
|
|
- {
|
|
|
- oErrorMessage = "";
|
|
|
- string SQL = "select em_code from employee where em_code=:UserName and em_password =:PassWord";
|
|
|
- DataTable dt;
|
|
|
- dt = (DataTable)ExecuteSql(SQL, "select", iUserCode, iPassWord);
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- return true;
|
|
|
- else
|
|
|
- {
|
|
|
- oErrorMessage = "用户名或者密码不正确!";
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- [Description("获取工单软件版本")]
|
|
|
- public bool GetSoftVersion(string iSN, out string oSoftVersion, out string oErrMessage)
|
|
|
- {
|
|
|
- string oMakeCode = "";
|
|
|
- oErrMessage = "";
|
|
|
- GetRcardMOInfo(iSN, out oMakeCode, out oErrMessage);
|
|
|
- oSoftVersion = getFieldDataByCondition("make", "ma_softversion", "ma_code='" + oMakeCode + "'").ToString();
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
- [Description("获取SN关联采集信息")]
|
|
|
- public bool GetProductRelation(string iSN, out string oWIFI, out string oBT, out string oIMEI1, out string oIMEI2, out string oIMEI3, out string oNetCode, out string oMEID, out string oErrMessage)
|
|
|
- {
|
|
|
- oWIFI = "";
|
|
|
- oBT = "";
|
|
|
- oIMEI1 = "";
|
|
|
- oIMEI2 = "";
|
|
|
- oIMEI3 = "";
|
|
|
- oNetCode = "";
|
|
|
- oMEID = "";
|
|
|
- string oMakeCode = "";
|
|
|
- if (GetRcardMOInfo(iSN, out oMakeCode, out oErrMessage))
|
|
|
- {
|
|
|
- DataTable dt = (DataTable)ExecuteSql("select mal_mac,mal_bt from makeaddresslist where mal_makecode='" + oMakeCode + "' and rownum=1 ", "select");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- if (dt.Rows[0]["mal_mac"].ToString() != "")
|
|
|
- {
|
|
|
- oWIFI = "Required";
|
|
|
- }
|
|
|
- if (dt.Rows[0]["mal_bt"].ToString() != "")
|
|
|
- {
|
|
|
- oBT = "Required";
|
|
|
- }
|
|
|
- }
|
|
|
- dt = (DataTable)ExecuteSql("select mil_imei1,mil_imei2,mil_imei3,mil_netcode,mil_meid from makeimeilist where mil_makecode='" + oMakeCode + "' and rownum=1", "select");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- if (dt.Rows[0]["mil_imei1"].ToString() != "")
|
|
|
- {
|
|
|
- oIMEI1 = "Required";
|
|
|
- }
|
|
|
- if (dt.Rows[0]["mil_imei2"].ToString() != "")
|
|
|
- {
|
|
|
- oIMEI2 = "Required";
|
|
|
- }
|
|
|
- if (dt.Rows[0]["mil_imei3"].ToString() != "")
|
|
|
- {
|
|
|
- oIMEI3 = "Required";
|
|
|
- }
|
|
|
- if (dt.Rows[0]["mil_netcode"].ToString() != "")
|
|
|
- {
|
|
|
- oNetCode = "Required";
|
|
|
- }
|
|
|
- if (dt.Rows[0]["mil_meid"].ToString() != "")
|
|
|
- {
|
|
|
- oMEID = "Required";
|
|
|
- }
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
- else return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("验证身份信息")]
|
|
|
- public bool CheckUserAndResourcePassed(string iUserCode, string iResCode, string iPassWord, out string oErrMessage)
|
|
|
- {
|
|
|
- oErrMessage = "";
|
|
|
- if (iUserCode == "" || iPassWord == "" || iResCode == "")
|
|
|
- {
|
|
|
- oErrMessage = "用户名,密码,岗位资源必须填写";
|
|
|
- return false;
|
|
|
- }
|
|
|
- if (CheckUserLogin(iUserCode, iPassWord, out oErrMessage))
|
|
|
- {
|
|
|
- string SQL = "select em_code,em_type,em_name from employee where em_code=:UserName ";
|
|
|
- DataTable dt;
|
|
|
- dt = (DataTable)ExecuteSql(SQL, "select", iUserCode);
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- string em_name = dt.Rows[0]["em_name"].ToString();
|
|
|
- string em_type = dt.Rows[0]["em_type"].ToString();
|
|
|
- if (iResCode == "")
|
|
|
- {
|
|
|
- oErrMessage = "岗位资源不允许为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- if (em_type == "admin")
|
|
|
- {
|
|
|
- if (CheckExist("Source", "sc_code='" + iResCode + "' and sc_statuscode='AUDITED'"))
|
|
|
- {
|
|
|
- return true;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- oErrMessage = "岗位资源编号错误或者未审核!";
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- dt = getFieldsDatasByCondition("cs$empgroup left join cs$userresource on ur_groupcode=eg_groupcode left join source on ur_resourcecode=sc_code", new string[] { "ur_resourcecode" }, "eg_emcode = '" + iUserCode + "' and sc_statuscode='AUDITED'");
|
|
|
-
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
-
|
|
|
- for (int i = 0; i < dt.Rows.Count; i++)
|
|
|
- {
|
|
|
- if (dt.Rows[i]["ur_resourcecode"].ToString() == iResCode)
|
|
|
- return true;
|
|
|
- }
|
|
|
- oErrMessage = "用户不处于当前资源所属分组!";
|
|
|
- }
|
|
|
- else
|
|
|
- oErrMessage = "岗位资源编号错误或者未审核!";
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- oErrMessage = "用户不存在!";
|
|
|
- }
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("分配MAC和BT信息")]
|
|
|
- public bool GetAddressRangeByMO(string iSN, out string oWIFI, out string oBT, out string oCode1, out string oCode2, out string oCdoe3, out string oErrMessage)
|
|
|
- {
|
|
|
- oWIFI = "";
|
|
|
- oBT = "";
|
|
|
- oCode1 = "";
|
|
|
- oCode2 = "";
|
|
|
- oCdoe3 = "";
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string omakeCode = "";
|
|
|
- GetRcardMOInfo(iSN, out omakeCode, out oErrMessage);
|
|
|
- string[] param = new string[] { iSN, omakeCode, oWIFI, oBT, oCode1, oCode2, oCdoe3, oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_sncode", "v_i_macode", "v_o_mac", "v_o_bt", "v_o_code1", "v_o_code2", "v_o_code3", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_GETADDRESSBYMAKECODE", ParamName, ref param);
|
|
|
- oWIFI = param[2];
|
|
|
- oBT = param[3];
|
|
|
- oCode1 = param[4];
|
|
|
- oCode2 = param[5];
|
|
|
- oCdoe3 = param[6];
|
|
|
- oErrMessage = param[7];
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null")
|
|
|
- return true;
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("分配IMEI和NetCode信息")]
|
|
|
- public bool GetMEIOrNetCodeRange(string iSN, string iIMEI1, string iNetCode, out string oIMEI1, out string oIMEI2, out string oMEID, out string oNetCode, out string oPSN, out string oID1, out string oID2, out string oID3, out string oID4, out string oID5, out string oErrMessage)
|
|
|
- {
|
|
|
- oIMEI1 = "";
|
|
|
- oIMEI2 = "";
|
|
|
- oMEID = "";
|
|
|
- oNetCode = "";
|
|
|
- oPSN = "";
|
|
|
- oID1 = "";
|
|
|
- oID2 = "";
|
|
|
- oID3 = "";
|
|
|
- oID4 = "";
|
|
|
- oID5 = "";
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string[] param = new string[] { iSN, "", iIMEI1, iNetCode, oIMEI1, oIMEI2, "", oMEID, oNetCode, oPSN, oID1, oID2, oID3, oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_sncode", "v_i_macode", "v_i_imei", "v_i_netcode", "v_o_imei1", "v_o_imei2", "v_o_imei3", "v_o_meid", "v_o_netcode", "v_o_psn", "v_o_id1", "v_o_id2", "v_o_id3", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_GETIMEIORNETCODERANGE", ParamName, ref param);
|
|
|
- oIMEI1 = param[4];
|
|
|
- oIMEI2 = param[5];
|
|
|
- oMEID = param[7];
|
|
|
- oNetCode = param[8];
|
|
|
- oPSN = param[9];
|
|
|
- oID1 = param[10];
|
|
|
- oID2 = param[11];
|
|
|
- oID3 = param[12];
|
|
|
- oErrMessage = param[13];
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null")
|
|
|
- return true;
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("获取序列号对应工单信息")]
|
|
|
- public bool GetRcardMOInfo(string iSN, out string oMoCode, out string oErrMessage)
|
|
|
- {
|
|
|
-
|
|
|
- oMoCode = "";
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- sql.Clear();
|
|
|
- sql.Append("select max(ms_id) from makeserial where ms_sncode in (select '" + iSN + "' from dual union select sn from ");
|
|
|
- sql.Append("makesnrelation where beforesn='" + iSN + "' and sn<>' ' union select beforesn from makesnrelation where sn='" + iSN + "' and beforesn<>' ')");
|
|
|
- DataTable dt = (DataTable)ExecuteSql(sql.ToString(), "select");
|
|
|
- string ms_id = dt.Rows[0][0].ToString();
|
|
|
- oMoCode = getFieldDataByCondition("MakeSerial", "ms_makecode", "ms_id='" + ms_id + "'").ToString();
|
|
|
- if (oMoCode != "")
|
|
|
- return true;
|
|
|
- else
|
|
|
- {
|
|
|
- oErrMessage = "序列号:" + iSN + " 未归属工单";
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("查询已分配的信息")]
|
|
|
- public bool GetMobileAllInfo(string iSN, out string oWIFI, out string oBT, out string oCode1, out string oCode2, out string oCode3, out string oIMEI1, out string oIMEI2, out string oMEID, out string oNetCode, out string oPSN, out string oID1, out string oID2, out string oID3, out string oID4, out string oID5, out string oErrMessage)
|
|
|
- {
|
|
|
- oBT = "";
|
|
|
- oMEID = "";
|
|
|
- oWIFI = "";
|
|
|
- oPSN = "";
|
|
|
- oNetCode = "";
|
|
|
- oIMEI1 = "";
|
|
|
- oIMEI2 = "";
|
|
|
- oCode1 = "";
|
|
|
- oCode2 = "";
|
|
|
- oCode3 = "";
|
|
|
- oID1 = "";
|
|
|
- oID2 = "";
|
|
|
- oID3 = "";
|
|
|
- oID4 = "";
|
|
|
- oID5 = "";
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- string ms_id = getFieldDataByCondition("makeserial", "max(ms_id)", "ms_sncode='" + iSN + "'").ToString();
|
|
|
- if (ms_id != "")
|
|
|
- {
|
|
|
- DataTable dt = getFieldsDataByCondition("MakeSerial", new string[] { "ms_id", "ms_mac", "ms_bt", "ms_meid", "ms_netcode", "ms_psn", "ms_imei1", "ms_imei2", "ms_imei3", "ms_othcode1", "ms_othcode2", "ms_othcode3", "ms_othid1", "ms_othid2", "ms_othid3" }, "ms_id='" + ms_id + "'");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- oWIFI = dt.Rows[0]["ms_mac"].ToString();
|
|
|
- oBT = dt.Rows[0]["ms_bt"].ToString();
|
|
|
- oPSN = dt.Rows[0]["ms_psn"].ToString();
|
|
|
- oNetCode = dt.Rows[0]["ms_netcode"].ToString();
|
|
|
- oMEID = dt.Rows[0]["ms_meid"].ToString();
|
|
|
- oIMEI1 = dt.Rows[0]["ms_imei1"].ToString();
|
|
|
- oIMEI2 = dt.Rows[0]["ms_imei2"].ToString();
|
|
|
- oCode1 = dt.Rows[0]["ms_othcode1"].ToString();
|
|
|
- oCode2 = dt.Rows[0]["ms_othcode2"].ToString();
|
|
|
- oCode3 = dt.Rows[0]["ms_othcode3"].ToString();
|
|
|
- oID1 = dt.Rows[0]["ms_othid3"].ToString();
|
|
|
- oID2 = dt.Rows[0]["ms_othid3"].ToString();
|
|
|
- oID3 = dt.Rows[0]["ms_othid3"].ToString();
|
|
|
- oErrMessage = "";
|
|
|
- return true;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- oErrMessage = "序列号" + iSN + "不存在";
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- oErrMessage = "序列号" + iSN + "不存在";
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private void InsertMakeProcess(string iSnCode, string iMakeCode, string iSourceCode, string iMPKind, string result, string iUserCode)
|
|
|
- {
|
|
|
- string CurrentStep = "";
|
|
|
- string LineCode = "";
|
|
|
- string CurrentStepName = "";
|
|
|
- GetStepCodeAndNameAndLineBySource(iSourceCode, ref CurrentStep, ref CurrentStepName, ref LineCode);
|
|
|
- sql.Length = 0;
|
|
|
- sql.Append("insert into MakeProcess(mp_id,mp_makecode,mp_maid, mp_mscode,mp_sncode,mp_stepcode,mp_stepname,");
|
|
|
- sql.Append("mp_craftcode,mp_craftname,mp_kind,mp_result,mp_indate,mp_inman,mp_wccode,mp_linecode,mp_sourcecode,mp_snstatus,mp_sncheckno,mp_snoutboxcode)");
|
|
|
- sql.Append("select MakeProcess_seq.nextval, ma_code,ma_id,ms_code,ms_sncode,'" + CurrentStep + "','" + CurrentStepName + "',");
|
|
|
- sql.Append("ma_craftcode,ma_craftname,'" + iMPKind + "','" + result + "',sysdate,'" + iUserCode + "',ma_wccode,'" + LineCode + "','" + iSourceCode + "',");
|
|
|
- sql.Append("ms_status,ms_checkno,ms_outboxcode from make left join makeserial on ms_makecode=ma_code left join step on st_code=ms_stepcode ");
|
|
|
- sql.Append("where ms_sncode='" + iSnCode + "' and ma_code='" + iMakeCode + "' and st_code='" + CurrentStep + "'");
|
|
|
- ExecuteSql(sql.ToString(), "insert");
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("写入SN的Wifi,BT信息")]
|
|
|
- public bool SetAddressInfo(string iSN, string iWIFI, string iBT, string iCode1, string iCode2, string iCode3, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string[] param = new string[] { iSN, iWIFI, iBT, iCode1, iCode2, iCode3, oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_sncode", "v_i_mac", "v_i_bt", "v_i_code1", "v_i_code2", "v_i_code3", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_SETADDRESSINFO", ParamName, ref param);
|
|
|
- oErrMessage = param[6];
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null")
|
|
|
- return true;
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- [Description("序列号跳到下一 步")]
|
|
|
- public bool SetStepFinish(string iMakeCode, string iSourceCode, string iSN, string iMPKind, string iResult, string iUserCode, string iErrCode, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string StepCode = getFieldDataByCondition("Makeserial", "ms_stepcode", "ms_sncode='" + iSN + "' and ms_makecode='" + iMakeCode + "'").ToString();
|
|
|
- string CurrentStep = GetStepCodeBySource(iSourceCode);
|
|
|
- string BgCode = getFieldDataByCondition("step", "st_badgroupcode", "st_code='" + CurrentStep + "'").ToString();
|
|
|
- switch (iResult)
|
|
|
- {
|
|
|
- case "OK":
|
|
|
- break;
|
|
|
- case "NG":
|
|
|
- if (iErrCode == "")
|
|
|
- {
|
|
|
- oErrMessage = "测试结果为NG时必须传递不良代码";
|
|
|
- return false;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- UpdateByCondition("makebad", "mb_status=-1", "mb_sncode='" + iSN + "' and mb_makecode='" + iMakeCode + "' and mb_stepcode='" + CurrentStep + "' and mb_status=0");
|
|
|
- string[] BadCode = iErrCode.Split(',');
|
|
|
- List<string> InsertSQL = new List<string>();
|
|
|
- for (int i = 0; i < BadCode.Length; i++)
|
|
|
- {
|
|
|
- string mb_id = GetSEQ("makebad_seq");
|
|
|
- sql.Length = 0;
|
|
|
- sql.Append("insert into makebad(mb_id,mb_makecode,mb_mscode,mb_sncode,mb_inman,mb_indate,mb_stepcode");
|
|
|
- sql.Append(",mb_sourcecode,mb_badcode,mb_badtable,mb_bgcode,mb_soncode,mb_status) select '" + mb_id + "'");
|
|
|
- sql.Append(",ma_code,ms_code,ms_sncode,'" + iUserCode + "',sysdate,'" + CurrentStep + "','" + iSourceCode + "',:bc_code,'',");
|
|
|
- sql.Append("'" + BgCode + "',sp_soncode,'0' from make left join makeSerial on ms_makecode=ma_code left join stepProduct on ");
|
|
|
- sql.Append("sp_mothercode=ma_prodcode and sp_stepcode=ms_nextstepcode where ms_sncode='" + iSN + "' and ms_makecode='" + iMakeCode + "'");
|
|
|
- InsertSQL.Add(sql.ToString().Replace(":bc_code", "'" + (BadCode[i].IndexOf("|") > 0 ? BadCode[i].Split('|')[0] : BadCode[i]) + "'"));
|
|
|
-
|
|
|
- if (BadCode[i].IndexOf("|") > 0)
|
|
|
- {
|
|
|
-
|
|
|
- string badloc = BadCode[i].Split('|')[1];
|
|
|
-
|
|
|
- string[] balocstr = badloc.Split('#');
|
|
|
- for (int j = 0; j < balocstr.Length; j++)
|
|
|
- {
|
|
|
-
|
|
|
- sql.Length = 0;
|
|
|
- sql.Append("insert into MAKEBADRSLOC(mbl_id,mbl_mbrid,mbl_loc,mbl_badcode,mbl_brcode,mbl_sncode,mbl_makecode,mbl_indate,mbl_inman)");
|
|
|
- sql.Append("values(MAKEBADRSLOC_seq.nextval,'" + mb_id + "','" + balocstr[j] + "','" + BadCode[i].Split('|')[0] + "','" + BadCode[i].Split('|')[0] + "','" + iSN + "','" + iMakeCode + "',sysdate,'" + iUserCode + "')");
|
|
|
- InsertSQL.Add(sql.ToString());
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- ExecuteSQLTran(InsertSQL.ToArray());
|
|
|
-
|
|
|
- ExecuteSql("update makeserial set ms_status='3' where ms_sncode='" + iSN + "' and ms_makecode='" + iMakeCode + "'", "update");
|
|
|
- }
|
|
|
- break;
|
|
|
- default:
|
|
|
- oErrMessage = "测试结果必须为NG或者OK";
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- if (StepCode == CurrentStep && iResult == "OK")
|
|
|
- {
|
|
|
- DataTable dt = getFieldsDataByCondition("makeserial", new string[] { "ms_status", "ms_craftcode", "ms_prodcode" }, "ms_sncode='" + iSN + "' and ms_makecode='" + iMakeCode + "'");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- string ms_status = dt.Rows[0]["ms_status"].ToString();
|
|
|
- string ms_craftcode = dt.Rows[0]["ms_craftcode"].ToString();
|
|
|
- string ms_prodcode = dt.Rows[0]["ms_prodcode"].ToString();
|
|
|
- if (ms_status == "3")
|
|
|
- {
|
|
|
- string nextstepcode = getFieldDataByCondition("craft left join craftdetail on cr_id=cd_crid ", "cd_nextstepcode", "cr_code='" + ms_craftcode + "' and cr_prodcode='" + ms_prodcode + "' and cd_stepcode='" + CurrentStep + "'").ToString();
|
|
|
- UpdateByCondition("makeserial", "ms_status=1,ms_nextstepcode='" + nextstepcode + "'", "ms_sncode='" + iSN + "' and ms_makecode='" + iMakeCode + "'");
|
|
|
- UpdateByCondition("makebad", "mb_status=-1", "mb_sncode='" + iSN + "' and mb_makecode='" + iMakeCode + "'");
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return CS_SetFinish(iMakeCode, iSourceCode, iSN, iUserCode, iResult, out oErrMessage);
|
|
|
- }
|
|
|
-
|
|
|
- [Description("获取账套信息")]
|
|
|
- public bool GetMaster(out string oMaster)
|
|
|
- {
|
|
|
- MasterDB = (DataTable)ExecuteSql("select ms_pwd,ma_user,ma_address from master", "select");
|
|
|
- oMaster = "";
|
|
|
- for (int i = 0; i < MasterDB.Rows.Count; i++)
|
|
|
- {
|
|
|
- if (i != MasterDB.Rows.Count - 1)
|
|
|
- oMaster += MasterDB.Rows[i]["ma_user"].ToString() + "|";
|
|
|
- else
|
|
|
- oMaster += MasterDB.Rows[i]["ma_user"].ToString();
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
- [Description("设置账套信息")]
|
|
|
- public bool SetMaster(string iMaster)
|
|
|
- {
|
|
|
- DataTable dt = (DataTable)ExecuteSql("select ms_pwd,ma_user,ma_address,ma_inneraddress from master where ma_user='" + iMaster + "'", "select");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- ConnectionStrings = "Data Source=" + dt.Rows[0]["ma_inneraddress"].ToString() + "/orcl;User ID=" + iMaster + ";PassWord=" + dt.Rows[0]["ms_pwd"].ToString() + ";";
|
|
|
- try
|
|
|
- {
|
|
|
- connection = new OracleConnection(ConnectionStrings);
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- return false;
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("设置测试结果,结果必须为NG或者OK")]
|
|
|
- public bool SetMobileData(string iTSN, string iSN, string iSourceCode, string iOperater, string iResult, string iErrCode, string flag, out string oErrorMessage)
|
|
|
- {
|
|
|
- oErrorMessage = "";
|
|
|
- if (iTSN == "") { oErrorMessage = "TSN不能为空"; return false; }
|
|
|
- if (iSN == "") { oErrorMessage = "SN不能为空"; return false; }
|
|
|
- string[] param = new string[] { iTSN, iSN, iSourceCode, iOperater, iResult, iErrCode, oErrorMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_tsn", "v_i_sncode", "v_i_sourcecode", "v_i_usercode", "v_i_result", "v_i_errcode", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_DLLSNCHANGE", ParamName, ref param);
|
|
|
- oErrorMessage = param[6];
|
|
|
- if (oErrorMessage == "" || oErrorMessage == null || oErrorMessage == "null")
|
|
|
- return true;
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- private bool CS_SetFinish(string iMakeCode, string iSourceCode, string iSN, string iUserCode, string iResult, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string[] param = new string[] { iMakeCode, iSourceCode, iSN, iUserCode, iResult, oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_macode", "v_i_sourcecode", "v_i_sncode", "v_i_usercode", "v_i_result", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_SETSTEPRESULT", ParamName, ref param);
|
|
|
- oErrMessage = param[5];
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null")
|
|
|
- return true;
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("设置测试结果")]
|
|
|
- public bool SetTestDetail(string iSN, string iTestResult, string iResCode, string[] iTestDetail, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "" || iSN == null)
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string omakeCode = "";
|
|
|
- GetRcardMOInfo(iSN, out omakeCode, out oErrMessage);
|
|
|
- sql.Clear();
|
|
|
- sql.Append("begin ");
|
|
|
- for (int i = 0; i < iTestDetail.Length; i++)
|
|
|
- {
|
|
|
- sql.Append("Insert into STEPTESTDETAIL (STD_ID,STD_CLASS,STD_SN,STD_MAKECODE,STD_ACTUALVALUE,STD_TESTRESULT,STD_INDATE,STD_RESCODE)");
|
|
|
- sql.Append("values(STEPTESTDETAIL_SEQ.nextval,'ITEM" + i + "','" + iSN + "','" + omakeCode + "','" + iTestDetail[i] + "','" + iTestResult + "',sysdate,'" + iResCode + "');");
|
|
|
- }
|
|
|
- sql.Append("end;");
|
|
|
- ExecuteSql(sql.ToString(), "insert");
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("设置IMEI信息")]
|
|
|
- public bool SetIMEIInfo(string iSN, string iIMEI1, string iIMEI2, string iIMEI3, string iMEID, string iNET, string iID1, string iID2, string iID3, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string[] param = new string[] { iSN, iIMEI1, iIMEI2, iIMEI3, iMEID, iNET, "", iID1, iID2, iID3, oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_sncode", "v_i_imei1", "v_i_imei2", "v_i_imei3", "v_i_meid", "v_i_netcode", "v_i_psn", "v_i_id1", "v_i_id2", "v_i_id3", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_SETIMEIINFO", ParamName, ref param);
|
|
|
- oErrMessage = param[10];
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null")
|
|
|
- return true;
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("设置测试结果")]
|
|
|
- public bool SetPcbaData(string iSN, string iResCode, string iOperator, string iResult, string iErrCode, out string oErrMessage)
|
|
|
- {
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- oErrMessage = "";
|
|
|
- string oMakeCode = "";
|
|
|
- GetRcardMOInfo(iSN, out oMakeCode, out oErrMessage);
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null")
|
|
|
- return SetStepFinish(oMakeCode, iResCode, iSN, "", iResult, iOperator, iErrCode, out oErrMessage);
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- [Description("序列号归属工单")]
|
|
|
- public bool GoMo(string iMO, string iSN, string iResCode, out string oErrMessage)
|
|
|
- {
|
|
|
- oErrMessage = "";
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- string[] param = new string[] { iMO, iResCode, iSN, "", "", "", oErrMessage };
|
|
|
- string[] ParamName = new string[] { "v_i_macode", "v_i_sourcecode", "v_i_sncode", "v_i_usercode", "v_o_macode", "v_o_msid", "v_o_errmsg" };
|
|
|
- CallProcedure("CS_CHECKSTEPSNANDMACODE", ParamName, ref param);
|
|
|
- oErrMessage = param[6];
|
|
|
- DataTable dt = (DataTable)ExecuteSql("select ms_status,ms_stepcode,ms_nextstepcode from makeserial where ms_id=(select max(ms_id) from makeserial where ms_sncode='" + iSN + "')", "select");
|
|
|
- string ms_status = "";
|
|
|
- string ms_stepcode = "";
|
|
|
- string ms_nextstepcode = "";
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- ms_status = dt.Rows[0]["ms_status"].ToString();
|
|
|
- ms_stepcode = dt.Rows[0]["ms_stepcode"].ToString();
|
|
|
- ms_nextstepcode = dt.Rows[0]["ms_nextstepcode"].ToString();
|
|
|
- }
|
|
|
- string stepcode = GetStepCodeBySource(iResCode);
|
|
|
- if (oErrMessage == "" || oErrMessage == null || oErrMessage == "null" || (ms_status == "3" && ms_stepcode == stepcode))
|
|
|
- {
|
|
|
- if (ms_status == "3")
|
|
|
- {
|
|
|
- oErrMessage = "";
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
- else
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private void GetStepCodeAndNameAndLineBySource(string Source, ref string StepCode, ref string StepName, ref string LineCode)
|
|
|
- {
|
|
|
- DataTable dt = getFieldsDataByCondition("source", new string[] { "sc_stepcode", "sc_stepname", "sc_linecode" }, "sc_code='" + Source + "'");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- StepCode = dt.Rows[0]["sc_stepcode"].ToString();
|
|
|
- StepName = dt.Rows[0]["sc_stepname"].ToString();
|
|
|
- LineCode = dt.Rows[0]["sc_linecode"].ToString();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private void GetStepCodeAndNameBySource(string Source, ref string StepCode, ref string StepName)
|
|
|
- {
|
|
|
- DataTable dt = getFieldsDataByCondition("source", new string[] { "sc_stepcode", "sc_stepname", "sc_linecode" }, "sc_code='" + Source + "'");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- StepCode = dt.Rows[0]["sc_stepcode"].ToString();
|
|
|
- StepName = dt.Rows[0]["sc_stepname"].ToString();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private string GetStepCodeBySource(string Source)
|
|
|
- {
|
|
|
- return getFieldDataByCondition("source", "sc_stepcode", "sc_code='" + Source + "'").ToString();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private object getFieldDataByCondition(string TableName, string Field, string Condition)
|
|
|
- {
|
|
|
- DataTable dt = new DataTable();
|
|
|
- string sql = "select " + Field + " from " + TableName + " where " + Condition;
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- Reconnect(command);
|
|
|
- OracleDataAdapter ad = new OracleDataAdapter();
|
|
|
- ad.SelectCommand = command;
|
|
|
- try
|
|
|
- {
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- connection = new OracleConnection(ConnectionStrings);
|
|
|
- connection.Open();
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- ad = new OracleDataAdapter();
|
|
|
- ad.SelectCommand = command;
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- ad.Dispose();
|
|
|
- command.Dispose();
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- return dt.Rows[0][0];
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- return "";
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private DataTable getFieldsDataByCondition(string TableName, string[] Fields, string Condition)
|
|
|
- {
|
|
|
- DataTable dt = new DataTable();
|
|
|
- string sql = "select ";
|
|
|
- sql += AddField(Fields);
|
|
|
- sql += " from " + TableName + " where " + Condition + " and rownum=1";
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- Reconnect(command);
|
|
|
- OracleDataAdapter ad = new OracleDataAdapter(command);
|
|
|
- try
|
|
|
- {
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- connection = new OracleConnection(ConnectionStrings);
|
|
|
- connection.Open();
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- ad = new OracleDataAdapter();
|
|
|
- ad.SelectCommand = command;
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- ad.Dispose();
|
|
|
- command.Dispose();
|
|
|
- return dt;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private DataTable getFieldsDatasByCondition(string TableName, string[] Fields, string Condition)
|
|
|
- {
|
|
|
- DataTable dt = new DataTable();
|
|
|
- string sql = "select ";
|
|
|
- sql += AddField(Fields);
|
|
|
- sql += " from " + TableName + " where " + Condition;
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- Reconnect(command);
|
|
|
- OracleDataAdapter ad = new OracleDataAdapter(command);
|
|
|
- try
|
|
|
- {
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- connection = new OracleConnection(ConnectionStrings);
|
|
|
- connection.Open();
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- ad = new OracleDataAdapter();
|
|
|
- ad.SelectCommand = command;
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- ad.Dispose();
|
|
|
- command.Dispose();
|
|
|
- return dt;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private DataTable getFieldsDatas(string TableName, string Fields)
|
|
|
- {
|
|
|
- DataTable dt = new DataTable();
|
|
|
- string sql = "select ";
|
|
|
- sql += Fields;
|
|
|
- sql += " from " + TableName;
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- Reconnect(command);
|
|
|
- OracleDataAdapter ad = new OracleDataAdapter(command);
|
|
|
- ad.SelectCommand = command;
|
|
|
- try
|
|
|
- {
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- connection = new OracleConnection(ConnectionStrings);
|
|
|
- connection.Open();
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- ad = new OracleDataAdapter();
|
|
|
- ad.SelectCommand = command;
|
|
|
- ad.Fill(dt);
|
|
|
- }
|
|
|
- ad.Dispose();
|
|
|
- command.Dispose();
|
|
|
- return dt;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private bool CheckExist(string TableName, string Condition)
|
|
|
- {
|
|
|
- string sql = "select count(1) from " + TableName + " where " + Condition;
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- Reconnect(command);
|
|
|
- OracleDataAdapter ad = new OracleDataAdapter(command);
|
|
|
- DataTable dt = new DataTable();
|
|
|
- ad.Fill(dt);
|
|
|
- ad.Dispose();
|
|
|
- command.Dispose();
|
|
|
- return int.Parse(dt.Rows[0][0].ToString()) > 0;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private object ExecuteSql(string SQL, string Type, params object[] names)
|
|
|
- {
|
|
|
- object result = null;
|
|
|
- command = new OracleCommand(SQL, connection);
|
|
|
- Reconnect(command);
|
|
|
-
|
|
|
- if (names.Length > 0)
|
|
|
- {
|
|
|
- string[] par = SQL.Split(':');
|
|
|
-
|
|
|
- StringBuilder[] addpar = new StringBuilder[par.Length - 1];
|
|
|
- for (int i = 0; i < par.Length - 1; i++)
|
|
|
- {
|
|
|
-
|
|
|
- char[] c = par[i + 1].ToCharArray();
|
|
|
- addpar[i] = new StringBuilder();
|
|
|
- for (int j = 0; j < c.Length; j++)
|
|
|
- {
|
|
|
- if (c[j] != ' ' && c[j] != ',' && c[j] != ')')
|
|
|
- {
|
|
|
- addpar[i].Append(c[j]);
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- for (int i = 0; i < addpar.Length; i++)
|
|
|
- {
|
|
|
- command.Parameters.Add(new OracleParameter(addpar[i].ToString(), names[i]));
|
|
|
- }
|
|
|
- }
|
|
|
- switch (Type.ToUpper())
|
|
|
- {
|
|
|
- case "SELECT":
|
|
|
- OracleDataAdapter ad = new OracleDataAdapter(command);
|
|
|
- result = new DataTable();
|
|
|
- try
|
|
|
- {
|
|
|
- ad.Fill((DataTable)result);
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- connection = new OracleConnection(ConnectionStrings);
|
|
|
- connection.Open();
|
|
|
- command = new OracleCommand(SQL, connection);
|
|
|
- ad = new OracleDataAdapter();
|
|
|
- ad.SelectCommand = command;
|
|
|
- ad.Fill((DataTable)result);
|
|
|
- }
|
|
|
- break;
|
|
|
- case "DELETE":
|
|
|
- try
|
|
|
- {
|
|
|
- result = command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- command.Connection = new OracleConnection(ConnectionStrings);
|
|
|
- command.Connection.Open();
|
|
|
- result = command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- break;
|
|
|
- case "UPDATE":
|
|
|
- try
|
|
|
- {
|
|
|
- result = command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- command.Connection = new OracleConnection(ConnectionStrings);
|
|
|
- command.Connection.Open();
|
|
|
- result = command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- break;
|
|
|
- case "INSERT":
|
|
|
- try
|
|
|
- {
|
|
|
- result = command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- command.Connection = new OracleConnection(ConnectionStrings);
|
|
|
- command.Connection.Open();
|
|
|
- result = command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- break;
|
|
|
- }
|
|
|
- command.Dispose();
|
|
|
- return result;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private void ExecuteSQLTran(params string[] SQL)
|
|
|
- {
|
|
|
- command = new OracleCommand();
|
|
|
- command.Connection = new OracleConnection(ConnectionStrings);
|
|
|
- command.Connection.Open();
|
|
|
- Reconnect(command);
|
|
|
- OracleTransaction tx = command.Connection.BeginTransaction(IsolationLevel.ReadCommitted);
|
|
|
- command.Transaction = tx;
|
|
|
- try
|
|
|
- {
|
|
|
- foreach (string sql in SQL)
|
|
|
- {
|
|
|
- if (!string.IsNullOrEmpty(sql))
|
|
|
- {
|
|
|
- command.CommandText = sql;
|
|
|
- command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- }
|
|
|
- tx.Commit();
|
|
|
- }
|
|
|
- catch (OracleException E)
|
|
|
- {
|
|
|
- tx.Rollback();
|
|
|
- throw new Exception(E.Message);
|
|
|
- }
|
|
|
- command.Dispose();
|
|
|
- }
|
|
|
-
|
|
|
- private string UpdateByCondition(string TableName, string update, string condition)
|
|
|
- {
|
|
|
- string sql = "update " + TableName + " set " + update + " where " + condition;
|
|
|
- command = new OracleCommand(sql, connection);
|
|
|
- Reconnect(command);
|
|
|
- try
|
|
|
- {
|
|
|
- command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- command.Connection = new OracleConnection(ConnectionStrings);
|
|
|
- command.Connection.Open();
|
|
|
- command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- command.Dispose();
|
|
|
- return sql;
|
|
|
- }
|
|
|
-
|
|
|
- private void CallProcedure(string ProcedureName, string[] ParamName, ref string[] param)
|
|
|
- {
|
|
|
- command = new OracleCommand(ProcedureName);
|
|
|
- command.Connection = connection;
|
|
|
- Reconnect(command);
|
|
|
- command.CommandText = ProcedureName;
|
|
|
- command.CommandType = CommandType.StoredProcedure;
|
|
|
- for (int i = 0; i < param.Length; i++)
|
|
|
- {
|
|
|
- command.Parameters.Add(new OracleParameter(ParamName[i], OracleDbType.Varchar2, 200, param[i], ParameterDirection.InputOutput));
|
|
|
-
|
|
|
- }
|
|
|
- try
|
|
|
- {
|
|
|
- command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- catch (Exception)
|
|
|
- {
|
|
|
- command.Connection = new OracleConnection(ConnectionStrings);
|
|
|
- command.Connection.Open();
|
|
|
- command.ExecuteNonQuery();
|
|
|
- }
|
|
|
- for (int i = 0; i < command.Parameters.Count; i++)
|
|
|
- param[i] = command.Parameters[i].Value.ToString();
|
|
|
- command.Dispose();
|
|
|
- }
|
|
|
-
|
|
|
- private string AddField(string[] Fields)
|
|
|
- {
|
|
|
- string sql = " ";
|
|
|
- foreach (string field in Fields)
|
|
|
- {
|
|
|
- sql += field + ",";
|
|
|
- }
|
|
|
- return sql.Substring(0, sql.Length - 1);
|
|
|
- }
|
|
|
-
|
|
|
- private string[] GetField(string field)
|
|
|
- {
|
|
|
- string[] fields = field.Split(',');
|
|
|
- for (int i = 0; i < fields.Length; i++)
|
|
|
- {
|
|
|
- fields[i] = fields[i].Substring(fields[i].LastIndexOf("as") + 2, fields[i].Length - fields[i].LastIndexOf("as") - 2).Trim();
|
|
|
- }
|
|
|
- return fields;
|
|
|
- }
|
|
|
-
|
|
|
- private void Reconnect(OracleCommand cmd)
|
|
|
- {
|
|
|
- if (cmd.Connection.State == ConnectionState.Closed)
|
|
|
- {
|
|
|
- cmd.Connection.Open();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private string GetSEQ(string SeqName)
|
|
|
- {
|
|
|
- DataTable dt = new DataTable();
|
|
|
- dt = (DataTable)ExecuteSql("SELECT " + SeqName + ".NEXTVAL FROM DUAL", "select");
|
|
|
- return dt.Rows[0][0].ToString();
|
|
|
- }
|
|
|
-
|
|
|
- [Description("获取上料信息")]
|
|
|
- public bool GetMaterialInfo(string iSN, out string oResult, out string oErrMessage)
|
|
|
- {
|
|
|
- JavaScriptSerializer jss = new JavaScriptSerializer();
|
|
|
- Dictionary<string, string> oInfo = new Dictionary<string, string>();
|
|
|
- oErrMessage = "";
|
|
|
- oResult = "";
|
|
|
- if (iSN == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN不能为空";
|
|
|
- return false;
|
|
|
- }
|
|
|
- Dictionary<string, string> MacInfo = new Dictionary<string, string>();
|
|
|
-
|
|
|
- string ms_id = getFieldDataByCondition("makeserial", "max(ms_id)", "ms_sncode='" + iSN + "' or ms_firstsn='" + iSN + "'").ToString();
|
|
|
- if (ms_id != "")
|
|
|
- {
|
|
|
- DataTable dt = getFieldsDataByCondition("MakeSerial", new string[] { "ms_id", "ms_mac", "ms_bt", "ms_meid", "ms_netcode", "ms_psn", "ms_imei1", "ms_imei2", "ms_imei3", "ms_othcode1", "ms_othcode2", "ms_othcode3", "ms_othid1", "ms_othid2", "ms_othid3" }, "ms_id='" + ms_id + "'");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- string Code1 = "";
|
|
|
- string Code2 = "";
|
|
|
- string Code3 = "";
|
|
|
- string Code4 = "";
|
|
|
- string Code5 = "";
|
|
|
- string Code6 = "";
|
|
|
- string Code7 = "";
|
|
|
- string Code8 = "";
|
|
|
- string Code9 = "";
|
|
|
- string Code10 = "";
|
|
|
- string Code11 = "";
|
|
|
- string Code12 = "";
|
|
|
- string Code13 = "";
|
|
|
- string Code14 = "";
|
|
|
- string Code15 = "";
|
|
|
- string[] param = new string[] { ms_id, Code1, Code2, Code3, Code4, Code5, Code6, Code7, Code8, Code9, Code10, Code11, Code12, Code13, Code14, Code15 };
|
|
|
- string[] ParamName = new string[] { "v_ms_id", "v_i_code1", "v_i_code2", "v_i_code3", "v_i_code4", "v_i_code5", "v_i_code6", "v_i_code7", "v_i_code8", "v_i_code9", "v_i_code10", "v_i_code11", "v_i_code12", "v_i_code13", "v_i_code14", "v_i_code15" };
|
|
|
- CallProcedure("GetMaterialInfo", ParamName, ref param);
|
|
|
- for (int i = 1; i < param.Length; i++)
|
|
|
- {
|
|
|
-
|
|
|
- if (param[i] != "" && param[i] != "null" && param[i] != null)
|
|
|
- {
|
|
|
- oInfo.Add(param[i].Split('^')[0], param[i].Split('^')[1]);
|
|
|
- }
|
|
|
- }
|
|
|
- oResult = jss.Serialize(oInfo);
|
|
|
- oErrMessage = "";
|
|
|
- return true;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- oErrMessage = "序列号" + iSN + "不存在";
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- oErrMessage = "序列号" + iSN + "不存在";
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- [Description("获取打印路径")]
|
|
|
- public bool GetPrintLabel(string iSN, out string oResult, out string oErrMessage)
|
|
|
- {
|
|
|
- oResult = "";
|
|
|
- oErrMessage = "";
|
|
|
- string ms_id = getFieldDataByCondition("makeserial", "max(ms_id)", "ms_sncode='" + iSN + "' or ms_firstsn='" + iSN + "'").ToString();
|
|
|
- if (ms_id == "")
|
|
|
- {
|
|
|
- oErrMessage = "SN" + iSN + "不存在";
|
|
|
- return false;
|
|
|
- }
|
|
|
- string prcode = getFieldDataByCondition("makeserial", "ms_prodcode", "ms_id=" + ms_id).ToString();
|
|
|
- DataTable dt = (DataTable)ExecuteSql("select la_templatetype,la_url from label where la_prodcode='" + prcode + "' and la_statuscode='AUDITED'", "select");
|
|
|
- if (dt.Rows.Count > 0)
|
|
|
- {
|
|
|
- for (int i = 0; i < dt.Rows.Count; i++)
|
|
|
- {
|
|
|
- oResult = dt.Rows[i]["la_templatetype"].ToString() + "^" + dt.Rows[i]["la_url"].ToString() + "#";
|
|
|
- }
|
|
|
- if (oResult.IndexOf("#") > 0)
|
|
|
- {
|
|
|
- oResult = oResult.Substring(0, oResult.Length - 1);
|
|
|
- }
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- oErrMessage = "产品" + prcode + "未维护标签";
|
|
|
- return false;
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
- [Description("获取序列号")]
|
|
|
- public bool GetSNList(string iMaCode, out string[] TSN_List, out string[] SN_List, out string[] TSN_Rule, out string[] SN_Rule, out string oErrMessage)
|
|
|
- {
|
|
|
- TSN_List = null;
|
|
|
- SN_List = null;
|
|
|
- TSN_Rule = null;
|
|
|
- SN_Rule = null;
|
|
|
- if (!CheckExist("Make", "ma_code='" + iMaCode + "'"))
|
|
|
- {
|
|
|
- oErrMessage = "工单号" + iMaCode + "不存在";
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- DataTable listbefore = (DataTable)ExecuteSql("select msl_sncode from makesnlist where msl_makecode='" + iMaCode + "' and msl_type='before' and nvl(msl_status,0)=0 order by msl_sncode", "select");
|
|
|
- List<string> _TSN = new List<string>();
|
|
|
- for (int i = 0; i < listbefore.Rows.Count; i++)
|
|
|
- {
|
|
|
- _TSN.Add(listbefore.Rows[i]["msl_sncode"].ToString());
|
|
|
- }
|
|
|
- TSN_List = _TSN.ToArray();
|
|
|
-
|
|
|
-
|
|
|
- DataTable listafter = (DataTable)ExecuteSql("select msl_sncode from makesnlist where msl_makecode='" + iMaCode + "' and msl_type='after' and nvl(msl_status,0)=0 and msl_sncode not in (select ms_firstsn from makeserial where ms_makecode='"+iMaCode+"') order by msl_sncode", "select");
|
|
|
- List<string> _SN = new List<string>();
|
|
|
- for (int i = 0; i < listafter.Rows.Count; i++)
|
|
|
- {
|
|
|
- _SN.Add(listafter.Rows[i]["msl_sncode"].ToString());
|
|
|
- }
|
|
|
- SN_List = _SN.ToArray();
|
|
|
-
|
|
|
-
|
|
|
- DataTable rulebefore = (DataTable)ExecuteSql("select msd_sncode from MAKESNRULEDETAIL where msd_makecode='" + iMaCode + "' and msd_type='before' and nvl(msd_status,0)=0 and msd_sncode not in (select ms_firstsn from makeserial where ms_makecode='" + iMaCode + "') order by msd_sncode", "select");
|
|
|
- List<string> _TSN_rule = new List<string>();
|
|
|
- for (int i = 0; i < rulebefore.Rows.Count; i++)
|
|
|
- {
|
|
|
- _TSN_rule.Add(rulebefore.Rows[i]["msd_sncode"].ToString());
|
|
|
- }
|
|
|
- TSN_Rule = _TSN_rule.ToArray();
|
|
|
-
|
|
|
-
|
|
|
- DataTable ruleafter = (DataTable)ExecuteSql("select msd_sncode from MAKESNRULEDETAIL where msd_makecode='" + iMaCode + "' and msd_type='after' and nvl(msd_status,0)=0 order by msd_sncode", "select");
|
|
|
- List<string> _SN_rule = new List<string>();
|
|
|
- for (int i = 0; i < ruleafter.Rows.Count; i++)
|
|
|
- {
|
|
|
- _SN_rule.Add(ruleafter.Rows[i]["msd_sncode"].ToString());
|
|
|
- }
|
|
|
- SN_Rule = _SN_rule.ToArray();
|
|
|
-
|
|
|
- oErrMessage = "";
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|