| 123456789101112131415161718192021222324252627 |
- //
- // OrderSaleViewController.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #define reportTextFont [UIFont systemFontOfSize:14]
- @interface OrderSaleViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource>
- @property(nonatomic,strong) ASIDownManager *downManager;//下载管理器
- @property(nonatomic,strong) NSString *mCustomerName;//客户名称
- @property(nonatomic,strong) NSString *mStartDate;//开始日期
- @property(nonatomic,strong) NSString *mEndDate;//结束日期
- @property(nonatomic,strong) NSString *mTelephone;//电话
- @property(nonatomic,strong) NSString *mInvoiceType;//单据类型
- @property(nonatomic,strong) NSString *correctStatus;//冲正状态
- @property(nonatomic,strong) UITableView *vCustomTableView;//tableview
- @property(nonatomic,strong) NSMutableArray *stockArr;
- @property(nonatomic,strong) UILabel *lblGoodsAmount;
- @property(nonatomic,strong) UILabel *lblDiscountAmount;
- @property(nonatomic,strong) UILabel *lblTotalAmount;
- @property(nonatomic,strong) NSMutableArray *details;
- @property(nonatomic,strong) UIView *headView;
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @end
|