示例#1
0
 public void Load(DateTime? startDate, DateTime? endDate)
 {
     ListVM = new VATInvoiceListVM { InvoicedStartDate = startDate, InvoicedEndDate = endDate, VATStatusId = (int)QuotaVATStatus.Partial, ContainCurrentUser = ContainCurrentUser };
     // IsUnOpenInvoice大于0标识为未开发票
     ListVM.Init();
 }
示例#2
0
 public void Load()
 {
     ListVM = new VATInvoiceListVM
                  {
                      BPId = BPId,
                      InternalBPId = InternalBPId,
                      SelectedMetal = SelectedMetal,
                      VATStatusId = VATStatusId,
                      ImplementedStartDate=ImplementedStartDate,
                      ImplementedEndDate=ImplementedEndDate,
                      VATInvoiceTypeId = VATInvoiceTypeId,
                      ContainCurrentUser = ContainCurrentUser
                  };
     ListVM.Init();
 }