| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- //
- // CustomerCurrentAccountSummaryReportVC.h
- // IBOSS
- //
- // Created by 关宏厚 on 2021/2/24.
- // Copyright © 2021 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "SideSlipFilterController.h"
- #import "CustomerCurrentSummarySearchModel.h"
- #import "CustomerCurrentSummaryListModel.h"
- #import "CustomerCurrentListCell.h"
- @interface CustomerCurrentAccountSummaryReportVC : BaseViewController<UITableViewDataSource,UITableViewDelegate>
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property(nonatomic,strong) NSMutableArray *customerCurrentSummaryList;
- @property(nonatomic,strong) NSMutableArray *customerCurrentSummaryFilterList;
- @property(nonatomic,strong) NSString *organizationCode;
- @property(nonatomic,strong) NSString *channelId;
- @property(nonatomic,strong) NSString *startDate;
- @property(nonatomic,strong) NSString *endDate;
- @property(nonatomic,strong) NSString *customerCode;
- @property(nonatomic,strong) NSString *advanceFlag;
- @property(nonatomic,strong) NSString *customerName;
- @property(nonatomic,strong) NSString *customerTelephone;
- @property(nonatomic,strong) NSString *customerAddress;
- @property(nonatomic,assign) Boolean isFilterZeroAmount;
- //预存期初额
- @property(nonatomic,strong) UILabel *lblLastDepositReceived;
- //预存余额
- @property(nonatomic,strong) UILabel *lblNextDepositReceived;
- //应收期初额
- @property(nonatomic,strong) UILabel *lblLastAccountReceivable;
- //销售额
- @property(nonatomic,strong) UILabel *lblSalesAmount;
- //回款额
- @property(nonatomic,strong) UILabel *lblRefundAmount;
- //调账额
- @property(nonatomic,strong) UILabel *lblAdjustAmount;
- //核销额
- @property(nonatomic,strong) UILabel *lblVerificationSum;
- //期末应收
- @property(nonatomic,strong) UILabel *lblNextAccountReceivable ;
- //余额
- @property(nonatomic,strong) UILabel *lblBalanceAmount;
- //未用定金
- @property(nonatomic,strong) UILabel *lblDepositReceivedEarnest;
- @property(nonatomic,strong) CustomerCurrentSummarySearchModel *currentSummarySearchModel;
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- @property(nonatomic,strong) UITableView *vTableView;
- @end
|