Example #1
0
 public void SaveCallRepairTypeDetail(CallRepairTypeDetail argCallRepairTypeDetail, DataAccess da, List <ErrorHandler> lstErr)
 {
     try
     {
         if (blnIsCallRepairTypeDetailExists(argCallRepairTypeDetail.CallCode, argCallRepairTypeDetail.ItemNo, argCallRepairTypeDetail.RPItemNo, argCallRepairTypeDetail.ClientCode, da) == false)
         {
             InsertCallRepairTypeDetail(argCallRepairTypeDetail, da, lstErr);
         }
         else
         {
             UpdateCallRepairTypeDetail(argCallRepairTypeDetail, da, lstErr);
         }
     }
     catch (Exception ex)
     {
         objErrorHandler.Type       = ErrorConstant.strAboartType;
         objErrorHandler.MsgId      = 0;
         objErrorHandler.Module     = ErrorConstant.strInsertModule;
         objErrorHandler.ModulePart = ErrorConstant.strDetailModule;
         objErrorHandler.Message    = ex.Message.ToString();
         objErrorHandler.RowNo      = 0;
         objErrorHandler.FieldName  = "";
         objErrorHandler.LogCode    = "";
         lstErr.Add(objErrorHandler);
     }
 }
Example #2
0
        private CallRepairTypeDetail objCreateCallRepairTypeDetail(DataRow dr)
        {
            CallRepairTypeDetail tCallRepairTypeDetail = new CallRepairTypeDetail();

            tCallRepairTypeDetail.SetObjectInfo(dr);

            return(tCallRepairTypeDetail);
        }
Example #3
0
        public void InsertCallRepairTypeDetail(CallRepairTypeDetail argCallRepairTypeDetail, DataAccess da, List <ErrorHandler> lstErr)
        {
            SqlParameter[] param = new SqlParameter[16];
            param[0] = new SqlParameter("@CallCode", argCallRepairTypeDetail.CallCode);
            param[1] = new SqlParameter("@ItemNo", argCallRepairTypeDetail.ItemNo);
            param[2] = new SqlParameter("@RPItemNo", argCallRepairTypeDetail.RPItemNo);
            param[3] = new SqlParameter("@RepairTypeCode", argCallRepairTypeDetail.RepairTypeCode);
            param[4] = new SqlParameter("@RepairTypeDesc", argCallRepairTypeDetail.RepairTypeDesc);

            param[5] = new SqlParameter("@DefectTypeCode", argCallRepairTypeDetail.DefectTypeCode);
            param[6] = new SqlParameter("@ServiceLevel", argCallRepairTypeDetail.ServiceLevel);

            param[7] = new SqlParameter("@RMarkInd", argCallRepairTypeDetail.RMarkInd);
            param[8] = new SqlParameter("@RepairProcDocCode", argCallRepairTypeDetail.RepairProcDocCode);

            param[9]  = new SqlParameter("@PartnerCode", argCallRepairTypeDetail.PartnerCode);
            param[10] = new SqlParameter("@ClientCode", argCallRepairTypeDetail.ClientCode);
            param[11] = new SqlParameter("@CreatedBy", argCallRepairTypeDetail.CreatedBy);
            param[12] = new SqlParameter("@ModifiedBy", argCallRepairTypeDetail.ModifiedBy);

            param[13]           = new SqlParameter("@Type", SqlDbType.Char);
            param[13].Size      = 1;
            param[13].Direction = ParameterDirection.Output;

            param[14]           = new SqlParameter("@Message", SqlDbType.VarChar);
            param[14].Size      = 255;
            param[14].Direction = ParameterDirection.Output;

            param[15]           = new SqlParameter("@returnvalue", SqlDbType.VarChar);
            param[15].Size      = 20;
            param[15].Direction = ParameterDirection.Output;

            int i = da.NExecuteNonQuery("Proc_InsertCallRepairTypeDetail", param);


            string strMessage  = Convert.ToString(param[14].Value);
            string strType     = Convert.ToString(param[13].Value);
            string strRetValue = Convert.ToString(param[15].Value);


            objErrorHandler.Type       = strType;
            objErrorHandler.MsgId      = 0;
            objErrorHandler.Module     = ErrorConstant.strInsertModule;
            objErrorHandler.ModulePart = ErrorConstant.strMasterModule;
            objErrorHandler.Message    = strMessage.ToString();
            objErrorHandler.RowNo      = 0;
            objErrorHandler.FieldName  = "";
            objErrorHandler.LogCode    = "";
            lstErr.Add(objErrorHandler);
        }
Example #4
0
        public CallRepairTypeDetail objGetCallRepairTypeDetail(string argCallCode, int argItemNo, int argRPItemNo, string argClientCode)
        {
            CallRepairTypeDetail argCallRepairTypeDetail = new CallRepairTypeDetail();
            DataSet DataSetToFill = new DataSet();

            if (argCallCode.Trim() == "")
            {
                goto ErrorHandler;
            }

            if (argItemNo <= 0)
            {
                goto ErrorHandler;
            }

            if (argRPItemNo <= 0)
            {
                goto ErrorHandler;
            }

            if (argClientCode.Trim() == "")
            {
                goto ErrorHandler;
            }

            DataSetToFill = this.GetCallRepairTypeDetail(argCallCode, argItemNo, argRPItemNo, argClientCode);

            if (DataSetToFill.Tables[0].Rows.Count <= 0)
            {
                goto Finish;
            }

            argCallRepairTypeDetail = this.objCreateCallRepairTypeDetail((DataRow)DataSetToFill.Tables[0].Rows[0]);

            goto Finish;

ErrorHandler:

Finish:
            DataSetToFill = null;


            return(argCallRepairTypeDetail);
        }
Example #5
0
        //public ICollection<CallRepairTypeDetail> colGetCallRepairTypeDetail(string argCallCode, int argItemNo, string argClientCode)
        //{
        //    List<CallRepairTypeDetail> lst = new List<CallRepairTypeDetail>();
        //    DataSet DataSetToFill = new DataSet();
        //    CallRepairTypeDetail tCallRepairTypeDetail = new CallRepairTypeDetail();

        //    DataSetToFill = this.GetCallRepairTypeDetail(argCallCode, argItemNo, argClientCode);

        //    if (DataSetToFill != null)
        //    {
        //        foreach (DataRow dr in DataSetToFill.Tables[0].Rows)
        //        {
        //            lst.Add(objCreateCallRepairTypeDetail(dr));
        //        }
        //    }
        //    goto Finish;

        //Finish:
        //    DataSetToFill = null;


        //    return lst;
        //}

        public void colGetCallRepairTypeDetail(string argCallCode, int argItemNo, string argClientCode, ref CallRepairTypeCol argCallRepairTypeCol)
        {
            DataSet DataSetToFill = new DataSet();
            CallRepairTypeDetail tCallRepairTypeDetail = new CallRepairTypeDetail();

            DataSetToFill = this.GetCallRepairTypeDetail(argCallCode, argItemNo, argClientCode);

            if (DataSetToFill != null)
            {
                foreach (DataRow dr in DataSetToFill.Tables[0].Rows)
                {
                    argCallRepairTypeCol.colCallRepairTypeDetail.Add(objCreateCallRepairTypeDetail(dr));
                }
            }
            goto Finish;

Finish:
            DataSetToFill = null;
        }
Example #6
0
        public ICollection <ErrorHandler> SaveCallRepairTypeDetail(CallRepairTypeDetail argCallRepairTypeDetail)
        {
            List <ErrorHandler> lstErr = new List <ErrorHandler>();
            DataAccess          da     = new DataAccess();

            try
            {
                if (blnIsCallRepairTypeDetailExists(argCallRepairTypeDetail.CallCode, argCallRepairTypeDetail.ItemNo, argCallRepairTypeDetail.RPItemNo, argCallRepairTypeDetail.ClientCode) == false)
                {
                    da.Open_Connection();
                    da.BEGIN_TRANSACTION();
                    InsertCallRepairTypeDetail(argCallRepairTypeDetail, da, lstErr);
                    foreach (ErrorHandler objerr in lstErr)
                    {
                        if (objerr.Type == "E")
                        {
                            da.ROLLBACK_TRANSACTION();
                            return(lstErr);
                        }
                    }
                }
                else
                {
                    da.Open_Connection();
                    da.BEGIN_TRANSACTION();
                    UpdateCallRepairTypeDetail(argCallRepairTypeDetail, da, lstErr);
                    foreach (ErrorHandler objerr in lstErr)
                    {
                        if (objerr.Type == "E")
                        {
                            da.ROLLBACK_TRANSACTION();
                            return(lstErr);
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                if (da != null)
                {
                    da.ROLLBACK_TRANSACTION();
                }
                objErrorHandler.Type       = ErrorConstant.strAboartType;
                objErrorHandler.MsgId      = 0;
                objErrorHandler.Module     = ErrorConstant.strInsertModule;
                objErrorHandler.ModulePart = ErrorConstant.strMasterModule;
                objErrorHandler.Message    = ex.Message.ToString();
                objErrorHandler.RowNo      = 0;
                objErrorHandler.FieldName  = "";
                objErrorHandler.LogCode    = "";
                lstErr.Add(objErrorHandler);
            }
            finally
            {
                if (da != null)
                {
                    da.Close_Connection();
                    da = null;
                }
            }
            return(lstErr);
        }