CustomerCurrentAccountSummaryReportVC.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. //
  2. // CustomerCurrentAccountSummaryReportVC.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2021/2/24.
  6. // Copyright © 2021 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "SideSlipFilterController.h"
  10. #import "CustomerCurrentSummarySearchModel.h"
  11. #import "CustomerCurrentSummaryListModel.h"
  12. #import "CustomerCurrentListCell.h"
  13. @interface CustomerCurrentAccountSummaryReportVC : BaseViewController<UITableViewDataSource,UITableViewDelegate>
  14. @property (nonatomic,strong) ASIDownManager *downManager;
  15. @property(nonatomic,strong) NSMutableArray *customerCurrentSummaryList;
  16. @property(nonatomic,strong) NSMutableArray *customerCurrentSummaryFilterList;
  17. @property(nonatomic,strong) NSString *organizationCode;
  18. @property(nonatomic,strong) NSString *channelId;
  19. @property(nonatomic,strong) NSString *startDate;
  20. @property(nonatomic,strong) NSString *endDate;
  21. @property(nonatomic,strong) NSString *customerCode;
  22. @property(nonatomic,strong) NSString *advanceFlag;
  23. @property(nonatomic,strong) NSString *customerName;
  24. @property(nonatomic,strong) NSString *customerTelephone;
  25. @property(nonatomic,strong) NSString *customerAddress;
  26. @property(nonatomic,assign) Boolean isFilterZeroAmount;
  27. //预存期初额
  28. @property(nonatomic,strong) UILabel *lblLastDepositReceived;
  29. //预存余额
  30. @property(nonatomic,strong) UILabel *lblNextDepositReceived;
  31. //应收期初额
  32. @property(nonatomic,strong) UILabel *lblLastAccountReceivable;
  33. //销售额
  34. @property(nonatomic,strong) UILabel *lblSalesAmount;
  35. //回款额
  36. @property(nonatomic,strong) UILabel *lblRefundAmount;
  37. //调账额
  38. @property(nonatomic,strong) UILabel *lblAdjustAmount;
  39. //核销额
  40. @property(nonatomic,strong) UILabel *lblVerificationSum;
  41. //期末应收
  42. @property(nonatomic,strong) UILabel *lblNextAccountReceivable ;
  43. //余额
  44. @property(nonatomic,strong) UILabel *lblBalanceAmount;
  45. //未用定金
  46. @property(nonatomic,strong) UILabel *lblDepositReceivedEarnest;
  47. @property(nonatomic,strong) CustomerCurrentSummarySearchModel *currentSummarySearchModel;
  48. @property (strong,nonatomic) SideSlipFilterController *filterController;
  49. @property(nonatomic,strong) UITableView *vTableView;
  50. @end