// // SalesDataAnalysisVC.h // IBOSS-HJ // // Created by 关宏厚 on 2020/12/30. // Copyright © 2020 elongtian. All rights reserved. // #import "BaseViewController.h" #import "IBOSS-Bridging-Header.h" #import "UIColor+hexColor.h" #import #import "DateFormat.h" #import "MyView.h" #import "IntAxisValueFormatter.h" #import "YAxisValueFormatter.h" #import "Util.h" #import "BRDatePickerView.h" #import "CustomBorderView.h" #import "ITDatePickerController.h" @interface SalesDataAnalysisVC : BaseViewController @property (strong, nonatomic) UIButton *btnSalesStatusCustom; @property (strong, nonatomic) UIButton *btnSalesStatusToday; @property (strong, nonatomic) UIButton *btnSalesStatusYesterday; @property (strong, nonatomic) UIButton *btnSalesStatusRecentlySevenDays; @property (strong, nonatomic) UIButton *btnSalesStatusRecentlyThirtyDays; @property (strong, nonatomic) UIButton *btnSalesStatusStartDate; @property (strong, nonatomic) UIButton *btnSalesStatusEndDate; @property (strong,nonatomic) BRDatePickerView *dealDatePicker; @property (nonatomic, strong) NSString *salesStatusStartDate; @property (nonatomic, strong) NSString *salesStatusEndDate; @property (nonatomic, strong) NSString *tempSalesStatusStartDate; @property (nonatomic, strong) NSString *tempSalesStatusEndDate; @property (strong, nonatomic) UIButton *btnSalesStatusDepartment; @property (strong, nonatomic) UIButton *btnSalesStatusChannel; @property (nonatomic, strong) BarChartView *salesStatusChartView; @property (strong, nonatomic) UIButton *btnCollectionStatusCustom; @property (strong, nonatomic) UIButton *btnCollectionStatusToday; @property (strong, nonatomic) UIButton *btnCollectionStatusYesterday; @property (strong, nonatomic) UIButton *btnCollectionStatusRecentlySevenDays; @property (strong, nonatomic) UIButton *btnCollectionStatusRecentlyThirtyDays; @property (strong, nonatomic) UIButton *btnCollectionStatusStartDate; @property (strong, nonatomic) UIButton *btnCollectionStatusEndDate; @property (nonatomic, strong) NSString *collectionStatusStartDate; @property (nonatomic, strong) NSString *collectionStatusEndDate; @property (nonatomic, strong) NSString *tempCollectionStatusStartDate; @property (nonatomic, strong) NSString *tempCollectionStatusEndDate; @property (strong, nonatomic) UIButton *btnCollectionStatusDepartment; @property (strong, nonatomic) UIButton *btnCollectionStatusChannel; @property (nonatomic, strong) BarChartView *collectionStatusChartView; @property (nonatomic, strong) BarChartView *orderStatusChartView; @property (nonatomic, strong) BarChartView *salesAchievementChartView; @property (nonatomic, strong) HorizontalBarChartView *transactionChartView; @property (strong, nonatomic) UIButton *btnOrderStatusCustom; @property (strong, nonatomic) UIButton *btnOrderStatusToday; @property (strong, nonatomic) UIButton *btnOrderStatusYesterday; @property (strong, nonatomic) UIButton *btnOrderStatusRecentlySevenDays; @property (strong, nonatomic) UIButton *btnOrderStatusRecentlyThirtyDays; @property (strong, nonatomic) UIButton *btnOrderStatusStartDate; @property (strong, nonatomic) UIButton *btnOrderStatusEndDate; @property (nonatomic, strong) NSString *orderStatusStartDate; @property (nonatomic, strong) NSString *orderStatusEndDate; @property (nonatomic, strong) NSString *tempOrderStatusStartDate; @property (nonatomic, strong) NSString *tempOrderStatusEndDate; @property (strong, nonatomic) UIButton *btnOrderStatusDepartment; @property (strong, nonatomic) UIButton *btnOrderStatusChannel; @property (strong, nonatomic) UIButton *btnSalesAchievementCustom; @property (strong, nonatomic) UIButton *btnSalesAchievemmentToday; @property(nonatomic,strong) MyView *salesAchievementChart; @property (strong, nonatomic) UIButton *btnSalesAchievementDepartment; @property (strong, nonatomic) UIButton *btnSalesAchievementStaff; @property (nonatomic, strong) NSString *salesAchievementMonth; @property (nonatomic, strong) NSString *shoppingGuideStartDate; @property (nonatomic, strong) NSString *shoppingGuideEndDate; @property (nonatomic, strong) NSString *tempShoppingGuideStartDate; @property (nonatomic, strong) NSString *tempShoppingGuideEndDate; @property (strong, nonatomic) UIButton *btnShoppingGuideStartDate; @property (strong, nonatomic) UIButton *btnShoppingGuideEndDate; @property (strong, nonatomic) UIButton *btnDeliveryStatusStartDate; @property (strong, nonatomic) UIButton *btnDeliveryStatusEndDate; @property (nonatomic, strong) NSString *deliveryStatusStartDate; @property (nonatomic, strong) NSString *deliveryStatusEndDate; @property (nonatomic, strong) NSString *tempDeliveryStatusStartDate; @property (nonatomic, strong) NSString *tempDeliveryStatusEndDate; @property (strong, nonatomic) UIButton *btnInstallStatusStartDate; @property (strong, nonatomic) UIButton *btnInstallStatusEndDate; @property (nonatomic, strong) NSString *installStatusStartDate; @property (nonatomic, strong) NSString *installStatusEndDate; @property (nonatomic, strong) NSString *tempInstallStatusStartDate; @property (nonatomic, strong) NSString *tempInstallStatusEndDate; @property (strong, nonatomic) UIButton *btnRepairStatusStartDate; @property (strong, nonatomic) UIButton *btnRepairStatusEndDate; @property (nonatomic, strong) NSString *repairStatusStartDate; @property (nonatomic, strong) NSString *repairStatusEndDate; @property (nonatomic, strong) NSString *tempRepairStatusStartDate; @property (nonatomic, strong) NSString *tempRepairStatusEndDate; @property(nonatomic,strong) MyView *transactionView; @property(nonatomic,strong) MyView *deliveryStatusView; @property(nonatomic,strong) MyView *installStatusView; @property(nonatomic,strong) MyView *repairStatusView; @property (nonatomic,strong) ASIDownManager *salesStatusDownManager; @property (nonatomic,strong) ASIDownManager *cashStatusDownManager; @property (nonatomic,strong) ASIDownManager *orderStatusDownManager; @property (nonatomic,strong) ASIDownManager *shoppingGuideDownManager; @property (nonatomic,strong) ASIDownManager *deliveryDownManager; @property (nonatomic,strong) ASIDownManager *installDownManager; @property (nonatomic,strong) ASIDownManager *repairDownManager; @property (nonatomic,strong) ASIDownManager *salesAchievementDownManager; @end