public static ExpenseList GetPendientesList(ECategoriaGasto categoria, PaymentInfo payment, bool childs) { return(GetPendientesList(categoria, payment, DateTime.MinValue, DateTime.MaxValue, childs)); }
public static ExpenseList GetByPagoAndPendientesList(ECategoriaGasto categoria, PaymentInfo pago, bool childs) { ExpenseList byPago = GetByPagoList(pago, childs); ExpenseList pendientes = GetPendientesList(categoria, childs); ExpenseList list = new ExpenseList(); list.IsReadOnly = false; foreach (ExpenseInfo item in byPago) { list.AddItem(item); } foreach (ExpenseInfo item in pendientes) { if (list.GetItem(item.Oid) == null) { list.AddItem(item); } } list.IsReadOnly = true; return(list); }
public static LoanList GetPendientesList(PaymentInfo payment, DateTime from, DateTime till) { return(GetPendientesList(payment, null, from, till)); }
public static LoanList GetByPagoList(PaymentInfo payment) { return(GetByPagoList(payment, null)); }
public static LoanList GetPendientesList(PaymentInfo payment, LoanInfo loan) { return(GetPendientesList(payment, loan, DateTime.MinValue, DateTime.MaxValue)); }
public static LoanList GetPendientesList(PaymentInfo payment) { return(GetPendientesList(payment, null)); }
public static string SELECT(PaymentInfo source) { return(Payroll.SELECT(new QueryConditions { Payment = source }, false)); }
public static PayrollList GetPendientesList(PaymentInfo pago, bool childs) { return(GetPendientesList(pago, DateTime.MinValue, DateTime.MaxValue, childs)); }
public static string SELECT(PaymentInfo item) { return(SELECT(new Library.Store.QueryConditions { Payment = item, PaymentType = item.ETipoPago })); }