Example #1
0
 public static DataTable getChallenList(long customerId, DateTime fromDate, DateTime toDate, long financialYearID)
 {
     try
     {
         DataTable i = SaleChallanTempProvider.getChallenList(customerId, fromDate, toDate, financialYearID);
         return(i);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public static DataTable getSaleChallenDetails(long salesChallanId, long financialYearId)
 {
     try
     {
         DataTable dtSalesChalalanDetails = SaleChallanTempProvider.getSaleChallenDetails(salesChallanId, financialYearId);
         return(dtSalesChalalanDetails);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #3
0
 public static int addSalesChallanDetails(SalesDetails saleChallan)
 {
     try
     {
         int result = SaleChallanTempProvider.addSalesChallanDetails(saleChallan);
         return(result);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #4
0
 public static int deleteRow(long financialYearId, long saleChallenId, long salesChallanItemDetailsId, long StockId, double Quantity)
 {
     try
     {
         int result = SaleChallanTempProvider.deleteRow(financialYearId, saleChallenId, salesChallanItemDetailsId, StockId, Quantity);
         return(result);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #5
0
 public static long getMaxIdSaleChallanInvoiceId(long financialYearId)
 {
     try
     {
         long saleChallanInvoiceId = SaleChallanTempProvider.getMaxIdSaleChallanInvoiceId(financialYearId);
         return(saleChallanInvoiceId);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #6
0
 public static DataTable getChallenList(DateTime fromDate, DateTime toDate, long financialYearId)
 {
     try
     {
         DataTable dtSaleChallanList = SaleChallanTempProvider.getChallenList(fromDate, toDate, financialYearId);
         return(dtSaleChallanList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }