protected override void Page_Load(object sender, EventArgs e)
    {
        SupplierAndGroupAccountFormUI supplierAndGroupAccountFormUI = new SupplierAndGroupAccountFormUI();

        if (!Page.IsPostBack)
        {
            if (Request.QueryString["SupplierAndGroupAccountId"] != null)
            {
                supplierAndGroupAccountFormUI.Tbl_SupplierAndGroupAccountId = Request.QueryString["SupplierAndGroupAccountId"];

                BindOptionAccountTypeDropDown();

                FillForm(supplierAndGroupAccountFormUI);

                btnSave.Visible   = false;
                btnClear.Visible  = false;
                btnUpdate.Visible = true;
                btnDelete.Visible = true;
                lblHeading.Text   = "Update Supplier And Group Account";
            }
            else
            {
                BindOptionAccountTypeDropDown();
                btnSave.Visible   = true;
                btnClear.Visible  = true;
                btnUpdate.Visible = false;
                btnDelete.Visible = false;
                lblHeading.Text   = "Add New Supplier And Group Account";
            }
        }
    }
    public int DeleteSupplierAndGroupAccount(SupplierAndGroupAccountFormUI supplierAndGroupAccountFormUI)
    {
        int resutl = 0;

        resutl = supplierAndGroupAccountFormDAL.DeleteSupplierAndGroupAccount(supplierAndGroupAccountFormUI);
        return(resutl);
    }
    public DataTable GetSupplierAndGroupAccountListById(SupplierAndGroupAccountFormUI supplierAndGroupAccountFormUI)
    {
        DataTable dtb = new DataTable();

        dtb = supplierAndGroupAccountFormDAL.GetSupplierAndGroupAccountListById(supplierAndGroupAccountFormUI);
        return(dtb);
    }
示例#4
0
    public DataTable GetSupplierAndGroupAccountListById(SupplierAndGroupAccountFormUI supplierAndGroupAccountFormUI)
    {
        DataSet   ds   = new DataSet();
        DataTable dtbl = new DataTable();

        try
        {
            using (SqlConnection SupportCon = new SqlConnection(connectionString))
            {
                SqlCommand sqlCmd = new SqlCommand("SP_SupplierAndGroupAccount_SelectById", SupportCon);
                sqlCmd.CommandType    = CommandType.StoredProcedure;
                sqlCmd.CommandTimeout = commandTimeout;

                sqlCmd.Parameters.Add("@tbl_SupplierAndGroupAccountId", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_SupplierAndGroupAccountId"].Value = supplierAndGroupAccountFormUI.Tbl_SupplierAndGroupAccountId;

                using (SqlDataAdapter adapter = new SqlDataAdapter(sqlCmd))
                {
                    adapter.Fill(ds);
                }
            }
            if (ds.Tables.Count > 0)
            {
                dtbl = ds.Tables[0];
            }
        }
        catch (Exception exp)
        {
            logExcpUIobj.MethodName       = "getSupplierAndGroupAccountListById()";
            logExcpUIobj.ResourceName     = "SupplierAndGroupAccountFormDAL.CS";
            logExcpUIobj.RecordId         = supplierAndGroupAccountFormUI.Tbl_SupplierAndGroupAccountId;
            logExcpUIobj.ExceptionDetails = "Error Occured. System Generated Error is: " + exp.ToString();
            logExcpDALobj.SaveExceptionToDB(logExcpUIobj);

            log.Error("[SupplierAndGroupAccountFormDAL : getSupplierAndGroupAccountListById] An error occured in the processing of Record Id : " + supplierAndGroupAccountFormUI.Tbl_SupplierAndGroupAccountId + ". Details : [" + exp.ToString() + "]");
        }
        finally
        {
            ds.Dispose();
        }

        return(dtbl);
    }
示例#5
0
    public int DeleteSupplierAndGroupAccount(SupplierAndGroupAccountFormUI supplierAndGroupAccountFormUI)
    {
        int result = 0;

        try
        {
            using (SqlConnection SupportCon = new SqlConnection(connectionString))
            {
                SupportCon.Open();
                SqlCommand sqlCmd = new SqlCommand("SP_SupplierAndGroupAccount_Delete", SupportCon);

                sqlCmd.CommandType    = CommandType.StoredProcedure;
                sqlCmd.CommandTimeout = commandTimeout;

                sqlCmd.Parameters.Add("@tbl_SupplierAndGroupAccountId", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_SupplierAndGroupAccountId"].Value = supplierAndGroupAccountFormUI.Tbl_SupplierAndGroupAccountId;

                result = sqlCmd.ExecuteNonQuery();

                sqlCmd.Dispose();
                SupportCon.Close();
            }
        }
        catch (Exception exp)
        {
            logExcpUIobj.MethodName       = "DeleteSupplierAndGroupAccount()";
            logExcpUIobj.ResourceName     = "SupplierAndGroupAccountFormDAL.CS";
            logExcpUIobj.RecordId         = supplierAndGroupAccountFormUI.Tbl_SupplierAndGroupAccountId;
            logExcpUIobj.ExceptionDetails = "Error Occured. System Generated Error is: " + exp.ToString();
            logExcpDALobj.SaveExceptionToDB(logExcpUIobj);

            log.Error("[SupplierAndGroupAccountFormDAL : DeleteSupplierAndGroupAccount] An error occured in the processing of Record Id : " + supplierAndGroupAccountFormUI.Tbl_SupplierAndGroupAccountId + ". Details : [" + exp.ToString() + "]");
        }

        return(result);
    }
示例#6
0
    public int AddSupplierAndGroupAccount(SupplierAndGroupAccountFormUI supplierAndGroupAccountFormUI)
    {
        int result = 0;

        try
        {
            using (SqlConnection SupportCon = new SqlConnection(connectionString))
            {
                SupportCon.Open();
                SqlCommand sqlCmd = new SqlCommand("SP_SupplierAndGroupAccount_Insert", SupportCon);
                sqlCmd.CommandType    = CommandType.StoredProcedure;
                sqlCmd.CommandTimeout = commandTimeout;

                sqlCmd.Parameters.Add("@CreatedBy", SqlDbType.NVarChar);
                sqlCmd.Parameters["@CreatedBy"].Value = supplierAndGroupAccountFormUI.CreatedBy;

                sqlCmd.Parameters.Add("@tbl_OrganizationId", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_OrganizationId"].Value = supplierAndGroupAccountFormUI.Tbl_OrganizationId;

                sqlCmd.Parameters.Add("@tbl_SupplierGroupId", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_SupplierGroupId"].Value = supplierAndGroupAccountFormUI.Tbl_SupplierGroupId;

                sqlCmd.Parameters.Add("@Opt_AccountType", SqlDbType.TinyInt);
                sqlCmd.Parameters["@Opt_AccountType"].Value = supplierAndGroupAccountFormUI.Opt_AccountType;

                sqlCmd.Parameters.Add("@PaymentMode", SqlDbType.Bit);
                sqlCmd.Parameters["@PaymentMode"].Value = supplierAndGroupAccountFormUI.PaymentMode;

                sqlCmd.Parameters.Add("@tbl_GLAccountId_Cash", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_GLAccountId_Cash"].Value = supplierAndGroupAccountFormUI.Tbl_GLAccountId_Cash;

                sqlCmd.Parameters.Add("@tbl_GLAccountId_AccountPayable", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_GLAccountId_AccountPayable"].Value = supplierAndGroupAccountFormUI.Tbl_GLAccountId_AccountPayable;

                sqlCmd.Parameters.Add("@tbl_GLAccountId_Purchase", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_GLAccountId_Purchase"].Value = supplierAndGroupAccountFormUI.Tbl_GLAccountId_Purchase;

                sqlCmd.Parameters.Add("@tbl_GLAccountId_TradeDiscount", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_GLAccountId_TradeDiscount"].Value = supplierAndGroupAccountFormUI.Tbl_GLAccountId_TradeDiscount;

                sqlCmd.Parameters.Add("@tbl_GLAccountId_Freight", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_GLAccountId_Freight"].Value = supplierAndGroupAccountFormUI.Tbl_GLAccountId_Freight;

                sqlCmd.Parameters.Add("@tbl_GLAccountId_AccruedPurchase", SqlDbType.NVarChar);
                sqlCmd.Parameters["@tbl_GLAccountId_AccruedPurchase"].Value = supplierAndGroupAccountFormUI.Tbl_GLAccountId_AccruedPurchase;

                result = sqlCmd.ExecuteNonQuery();

                sqlCmd.Dispose();
                SupportCon.Close();
            }
        }
        catch (Exception exp)
        {
            logExcpUIobj.MethodName       = "AddSupplierAndGroupAccount()";
            logExcpUIobj.ResourceName     = "SupplierAndGroupAccountFormDAL.CS";
            logExcpUIobj.RecordId         = "";
            logExcpUIobj.ExceptionDetails = "Error Occured. System Generated Error is: " + exp.ToString();
            logExcpDALobj.SaveExceptionToDB(logExcpUIobj);

            log.Error("[SupplierAndGroupAccountFormDAL : AddSupplierAndGroupAccount] An error occured in the processing of Record. Details : [" + exp.ToString() + "]");
        }

        return(result);
    }