Beispiel #1
0
    private bool CheckCanDeliver(string s_Item, string s_ChanNo, string s_Store)
    {
        #region
        bool bResult = true;
        try
        {
            DataTable dtTemp = dtStorePOSetting;
            ArrayList ParameterList1 = new ArrayList();

            ParameterList1.Clear();
            ParameterList1.Add(s_Item);
            ParameterList1.Add(s_ChanNo);
            ParameterList1.Add(s_Store);
            ParameterList1.Add(Session["UID"].ToString());
            PIC.VDS2G.BSM.CRM.QueryCRMCommon crm_bco = new PIC.VDS2G.BSM.CRM.QueryCRMCommon(ConnectionDB);
            bResult = crm_bco.CheckCanDeliver_Web(ParameterList1);



        }
        catch (Exception ex)
        {
            ErrorMsgLabel.Text = ex.Message;
        }

        return bResult;

        #endregion
    }