コード例 #1
0
ファイル: commFunction.cs プロジェクト: DigiAjay18/CompxERP
 public void GetStateCity(DropDownList ddlCityState, int Type, int stateCode)
 {
     osubmit = new submitData();
     osubmit.GetConection();
     if (Type == 0)
     {
         da = new SqlDataAdapter("select cityname,citycode from citydet  where cityType='67'", osubmit.con);
         dt = new DataTable();
         da.Fill(dt);
         if (dt.Rows.Count > 0)
         {
             ddlCityState.DataSource     = dt;
             ddlCityState.DataTextField  = "cityname";
             ddlCityState.DataValueField = "citycode";
             ddlCityState.DataBind();
         }
         ddlCityState.Items.Insert(0, new ListItem("--Select State--", "0"));
     }
     else
     {
         da = new SqlDataAdapter("select cityname,citycode from citydet  where cityType='15' and cityrute = '" + stateCode + "'", osubmit.con);
         dt = new DataTable();
         da.Fill(dt);
         if (dt.Rows.Count > 0)
         {
             ddlCityState.DataSource     = dt;
             ddlCityState.DataTextField  = "cityname";
             ddlCityState.DataValueField = "citycode";
             ddlCityState.DataBind();
         }
         ddlCityState.Items.Insert(0, new ListItem("--Select City--", "0"));
     }
 }
コード例 #2
0
ファイル: commFunction.cs プロジェクト: DigiAjay18/CompxERP
    public DataTable GetFirmDevice(string FirmCode, string status, string NoticeType)
    {
        osubmit = new submitData();
        osubmit.GetConection();
        string sql = "";

        if (NoticeType == "1")
        {
            if (status == "0")
            {
                sql = "select c.owner_name,s.code,s.DeviceNm,s.DeviceNo,s.SeizDate,'N/A'  Pno,'Seized' as PermStatus from SeizureEntry  s left join ClientMaster c on s.FirmCode = c.client_id  where s.FirmCode = '" + FirmCode + "' and s.status='" + status + "'";
            }
            else
            {
                sql = "select n.InstNo as DeviceNo,n.InstName as DeviceNm,s.SeizDate,'N/A' as Pno,case when n.PermStatus = 'P' then 'Pending' else n.PermStatus end as PermStatus from NoticeInfo n left join SeizureEntry s on s.DeviceNo = n.InstNo where n.FirmCode='" + FirmCode + "' and s.Status = '" + status + "' and isnull(n.SentStatus,'') != 'Sent' and NoticeType='" + NoticeType + "'";
            }
        }
        else
        {
            if (status == "0")
            {
                sql = "select n.FirmCode,c.owner_name,n.InstNo as DeviceNo,n.InstName as DeviceNm,s.SeizDate,n.NoticeNo as Pno,'N/A' as PermStatus from NoticeInfo n left join SeizureEntry s on s.DeviceNo = n.InstNo left join ClientMaster c on c.client_id = n.FirmCode where n.FirmCode='" + FirmCode + "' and s.Status = '1' and isnull(n.SentStatus,'') = 'Sent'";
            }
            else
            {
                sql = "select n.FirmCode,c.owner_name,n.InstNo as DeviceNo,n.InstName as DeviceNm,s.SeizDate,n.NoticeNo as Pno, case when n.PermStatus = 'P' then 'Pending' else n.PermStatus end as PermStatus from NoticeInfo n left join SeizureEntry s on s.DeviceNo = n.InstNo left join ClientMaster c on c.client_id = n.FirmCode where n.FirmCode='" + FirmCode + "' and isnull(n.SentStatus,'') != 'Sent' and NoticeType='" + NoticeType + "'";
            }
        }
        SqlDataAdapter daown = new SqlDataAdapter(sql, osubmit.con);
        DataTable      dtown = new DataTable();

        daown.Fill(dtown);
        return(dtown);
    }
コード例 #3
0
        public System.Threading.Tasks.Task <submitDataResponse> submitDataAsync(string ucn, Exchange.Contracts.ShowCase.CCIS.ccisFile ccisFile, string xml)
        {
            submitData inValue = new submitData();

            inValue.Body          = new submitDataBody();
            inValue.Body.ucn      = ucn;
            inValue.Body.ccisFile = ccisFile;
            inValue.Body.xml      = xml;
            return(((ICCISPush)(this)).submitDataAsync(inValue));
        }
コード例 #4
0
ファイル: commFunction.cs プロジェクト: DigiAjay18/CompxERP
    public string GetFirmOwner(string FirmCode)
    {
        osubmit = new submitData();
        osubmit.GetConection();

        SqlDataAdapter daown = new SqlDataAdapter("select owner_name from ClientMaster where client_id='" + FirmCode + "'", osubmit.con);
        DataTable      dtown = new DataTable();

        daown.Fill(dtown);
        return(dtown.Rows[0]["owner_name"].ToString());
    }
コード例 #5
0
        public ActionResult UserReport()
        {
            submitData  oCon = new submitData();
            clsUserWork frm  = new clsUserWork();

            DDLController oDDL = new DDLController();

            frm.lstUser = oDDL.getUser();

            return(View(frm));
        }
コード例 #6
0
        public string submitData(string ucn, Exchange.Contracts.ShowCase.CCIS.ccisFile ccisFile, string xml)
        {
            submitData inValue = new submitData();

            inValue.Body          = new submitDataBody();
            inValue.Body.ucn      = ucn;
            inValue.Body.ccisFile = ccisFile;
            inValue.Body.xml      = xml;
            submitDataResponse retVal = ((ICCISPush)(this)).submitData(inValue);

            return(retVal.Body.key);
        }
コード例 #7
0
        public ActionResult Rights()
        {
            submitData oCon = new submitData();
            clsRights  frm  = new clsRights();

            DDLController oDDL = new DDLController();

            frm.lstGrpMenu = oDDL.getMasterMenu();
            frm.lstUser    = oDDL.getUser();
            frm.lstGrpUser = oDDL.getGroupUser();
            return(View(frm));
        }
コード例 #8
0
ファイル: commFunction.cs プロジェクト: DigiAjay18/CompxERP
 public DataTable GetData(int menucode, int searchfld)
 {
     osubmit = new submitData();
     osubmit.GetConection();
     dt                 = new DataTable();
     objcmd             = new SqlCommand("getData", osubmit.con);
     objcmd.CommandType = CommandType.StoredProcedure;
     objcmd.Parameters.Add("@MenuCode", SqlDbType.Int).Value = menucode;
     objcmd.Parameters.Add("@DdlCode", SqlDbType.Int).Value  = searchfld;
     da = new SqlDataAdapter(objcmd);
     da.Fill(dt);
     return(dt);
 }
コード例 #9
0
ファイル: commFunction.cs プロジェクト: DigiAjay18/CompxERP
 public void FillGrid(GridView gvDetails, string Tablenm, string Condition)
 {
     if (Condition.Trim() != "")
     {
         Condition = " where " + Condition;
     }
     osubmit = new submitData();
     osubmit.GetConection();
     da = new SqlDataAdapter("select " + GetBoundField(gvDetails) + " From " + Tablenm + Condition, osubmit.con);
     dt = new DataTable();
     da.Fill(dt);
     gvDetails.DataSource = dt;
     gvDetails.DataBind();
 }
コード例 #10
0
ファイル: commFunction.cs プロジェクト: DigiAjay18/CompxERP
    public DataTable GetTableData(string Tablename, string columnNms, string Condition)
    {
        if (Condition.Trim() != "")
        {
            Condition = " where " + Condition;
        }
        osubmit = new submitData();
        osubmit.GetConection();
        SqlDataAdapter da = new SqlDataAdapter("select " + columnNms + " From " + Tablename + Condition, osubmit.con);
        DataTable      dt = new DataTable();

        da.Fill(dt);
        return(dt);
    }
コード例 #11
0
ファイル: commFunction.cs プロジェクト: DigiAjay18/CompxERP
    public string getMaxcitystateCol(int type)
    {
        osubmit = new submitData();
        osubmit.GetConection();
        string sql = "";

        if (type == 1)
        {
            sql = "Select Max(citycode)+1 from citydet where cityType='67'";
        }
        else if (type == 2)
        {
            sql = "Select Max(citycode)+1 from citydet where cityType='15'";
        }
        else if (type == 3)
        {
            sql = "Select Max(citycode)+1 from citydet where cityType='582'";
        }
        SqlDataAdapter da = new SqlDataAdapter(sql, osubmit.con);
        DataTable      dt = new DataTable();

        da.Fill(dt);
        if (dt.Rows.Count > 0)
        {
            if (dt.Rows[0][0].ToString() == "")
            {
                return("1");
            }
            else
            {
                return(dt.Rows[0][0].ToString());
            }
        }
        else
        {
            return("1");
        }
    }
コード例 #12
0
 System.Threading.Tasks.Task <submitDataResponse> ICCISPush.submitDataAsync(submitData request)
 {
     return(base.Channel.submitDataAsync(request));
 }
コード例 #13
0
 submitDataResponse ICCISPush.submitData(submitData request)
 {
     return(base.Channel.submitData(request));
 }