| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //
- // StatisticsDataAnalysisVC.h
- // IBOSS-HJ
- //
- // Created by 关宏厚 on 2020/12/7.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "IBOSS-Bridging-Header.h"
- #import "UIColor+hexColor.h"
- #import <Charts/Charts.h>
- #import "YAxisValueFormatter.h"
- #import "NetMoneyInflowAxisValueFormatter.h"
- #import "ITDatePickerController.h"
- #import "IntAxisValueFormatter.h"
- #import "BRDatePickerView.h"
- #import "CustomBorderView.h"
- @interface StatisticsDataAnalysisVC : BaseViewController <ChartViewDelegate,
- ITDatePickerControllerDelegate>
- @property (strong, nonatomic) UIButton *btnCustom;
- @property (strong, nonatomic) UIButton *btnToday;
- @property (strong, nonatomic) UIButton *btnYesterday;
- @property (strong, nonatomic) UIButton *btnRecentlySevenDays;
- @property (strong, nonatomic) UIButton *btnRecentlyThirtyDays;
- @property (strong, nonatomic) UIButton *btnSalesProfitStartDate;
- @property (strong, nonatomic) UIButton *btnSalesProfitEndDate;
- @property (strong, nonatomic) UIButton *btnChannel;
- @property (strong, nonatomic) UIButton *btnDepartment;
- @property (strong, nonatomic) UIButton *btnAssetsCustom;
- @property (strong, nonatomic) UIButton *btnLastYear;
- @property (strong, nonatomic) UIButton *btnThisYear;
- @property (strong, nonatomic) UIButton *btnProcurementCustomMonth;
- @property (strong, nonatomic) UIButton *btnProcurementCurrentMonth;
- @property (nonatomic, strong) NSArray *options;
- @property (nonatomic, strong) BarChartView *chartView;
- @property (nonatomic, strong) BarChartView *currentSituationChartView;
- @property (nonatomic, strong) BarChartView *procurementStatusChartView;
- @property (nonatomic, strong) BarChartView *payableChartView;
- @property (nonatomic, strong) BarChartView *singleChartView;
- @property (nonatomic, strong) BarChartView *paymentFeesChartView;
- @property (nonatomic, strong) PieChartView *pieView;
- @property (strong,nonatomic) BRDatePickerView *dealDatePicker;
- @property (strong, nonatomic) UIButton *btnMonetoryCaitalCustom;
- @property (strong, nonatomic) UIButton *btnMonetoryCaitalCurrentMonth;
- @property (strong, nonatomic) UIButton *btnMonetoryCaitalThisYear;
- @property (strong, nonatomic) UIButton *btnCurrentChannel;
- @property (strong, nonatomic) UIButton *btnCurrentDepartment;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property (nonatomic,strong) ASIDownManager *accountCashDownManager;
- @property (nonatomic,strong) ASIDownManager *currentSituationDownManager;
- @property (nonatomic,strong) ASIDownManager *payableDownManager;
- @property (nonatomic,strong) ASIDownManager *inventoryStatusDownManager;
- @property (nonatomic,strong) ASIDownManager *paymentFeesDownManager;
- @property (nonatomic,strong) ASIDownManager *procurementStatusDownManager;
- @property (nonatomic, strong) NSString *salesProfitStartDate;
- @property (nonatomic, strong) NSString *salesProfitEndDate;
- @property (nonatomic, strong) NSString *tempSalesProfitStartDate;
- @property (nonatomic, strong) NSString *tempSalesProfitEndDate;
- @property (strong, nonatomic) UIButton *btnPaymentFeesCustomMonth;
- @property (strong, nonatomic) UIButton *btnPaymentFeesCurrentMonth;
- @end
|