OrderSaleViewController.h 1.2 KB

123456789101112131415161718192021222324252627
  1. //
  2. // OrderSaleViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #define reportTextFont [UIFont systemFontOfSize:14]
  10. @interface OrderSaleViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource>
  11. @property(nonatomic,strong) ASIDownManager *downManager;//下载管理器
  12. @property(nonatomic,strong) NSString *mCustomerName;//客户名称
  13. @property(nonatomic,strong) NSString *mStartDate;//开始日期
  14. @property(nonatomic,strong) NSString *mEndDate;//结束日期
  15. @property(nonatomic,strong) NSString *mTelephone;//电话
  16. @property(nonatomic,strong) NSString *mInvoiceType;//单据类型
  17. @property(nonatomic,strong) NSString *correctStatus;//冲正状态
  18. @property(nonatomic,strong) UITableView *vCustomTableView;//tableview
  19. @property(nonatomic,strong) NSMutableArray *stockArr;
  20. @property(nonatomic,strong) UILabel *lblGoodsAmount;
  21. @property(nonatomic,strong) UILabel *lblDiscountAmount;
  22. @property(nonatomic,strong) UILabel *lblTotalAmount;
  23. @property(nonatomic,strong) NSMutableArray *details;
  24. @property(nonatomic,strong) UIView *headView;
  25. @property (strong, nonatomic) SideSlipFilterController *filterController;
  26. @end