예제 #1
0
 private void manage()
 {
     try
     {
         Response.Write(LtoCheckVoucherBal.manage(Request.QueryString, Request.Form).ToJSON());
     }
     catch (Exception ex)
     {
         Response.Write("Error: " + ex.Message);
     }
 }
예제 #2
0
    private void getComboBranchMain()
    {
        try
        {
            List <ComboBranchMainForCV> ltoCashAdvance = LtoCheckVoucherBal.getComboBranchMain(Request.QueryString);

            if (ltoCashAdvance != null && ltoCashAdvance.Count > 0)
            {
                Response.Write(ltoCashAdvance.ToJSON());
            }
            else
            {
                Response.Write("No Result");
            }
        }
        catch (Exception ex)
        {
            Response.Write("Error: " + ex.Message);
        }
    }
예제 #3
0
    private void getLtoCashAdvanceRecordDetails()
    {
        try
        {
            List <LtoRecEndorsementTransaction> ltoCashAdvance = LtoCheckVoucherBal.getLtoCashAdvanceRecordDetails(Request.QueryString);

            if (ltoCashAdvance != null && ltoCashAdvance.Count > 0)
            {
                Response.Write(ltoCashAdvance.ToJSON());
            }
            else
            {
                Response.Write("No Result");
            }
        }
        catch (Exception ex)
        {
            Response.Write("Error: " + ex.Message);
        }
    }
예제 #4
0
    private void getCVEntryLedger()
    {
        try
        {
            List <LtoCVEntryLedger> mstList = LtoCheckVoucherBal.getCVEntryLedger(Request.QueryString);

            if (mstList != null && mstList.Count > 0)
            {
                Response.Write(mstList.ToJSON());
            }
            else
            {
                Response.Write("No Result");
            }
        }
        catch (Exception ex)
        {
            Response.Write("Error: " + ex.Message);
        }
    }
예제 #5
0
    private void getCashAdvanceCVDetails()
    {
        try
        {
            List <CVCADetails> mstList = LtoCheckVoucherBal.getCashAdvanceCVDetails(Request.QueryString);

            if (mstList != null && mstList.Count > 0)
            {
                Response.Write(mstList.ToJSON());
            }
            else
            {
                Response.Write("No Result");
            }
        }
        catch (Exception ex)
        {
            Response.Write("Error: " + ex.Message);
        }
    }
예제 #6
0
    private void getComboBranchBankAccount()
    {
        try
        {
            List <ComboBranchBankAccount> mst = LtoCheckVoucherBal.getComboBranchBankAccount(Request.QueryString);

            if (mst != null && mst.Count > 0)
            {
                Response.Write(mst.ToJSON());
            }
            else
            {
                Response.Write("No Result");
            }
        }
        catch (Exception ex)
        {
            Response.Write("Error: " + ex.Message);
        }
    }