| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // InventoryFrozenOrderViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/4/28.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "InventoryFreezeOrderSearchModel.h"
- #import "InventoryFreezeOrderListModel.h"
- #import "InventoryFreezeOrderListCell.h"
- #import "InventoryFreezeGoodsDetailViewController.h"
- #import "NewInventoryFreezeViewController.h"
- @interface InventoryFrozenOrderViewController : BaseViewController<UITableViewDataSource,UITableViewDelegate,InventoryGoodsDelegate>
- @property (strong,nonatomic) SideSlipFilterController *filterController;
- @property(nonatomic,strong) UIView *searchView;
- @property (strong,nonatomic) UINavigationController *cNav;
- @property(nonatomic,strong) NSString *customerName;
- @property(nonatomic,strong) NSString *contacts;
- @property(nonatomic,strong) NSString *telephone;
- @property(nonatomic,strong) NSString *staffName;
- @property(nonatomic,strong) NSString *freezeReasonName;
- @property(nonatomic,strong) NSString *accountStartDate;
- @property(nonatomic,strong) NSString *accountEndDate;
- @property(nonatomic,strong) NSString *freezeStartDate;
- @property(nonatomic,strong) NSString *freezeEndDate;
- @property (nonatomic,strong) ASIDownManager *downManager;
- @property(nonatomic,strong) NSMutableArray *orderList;
- @property (strong,nonatomic) NSMutableDictionary *heights;
- @property (nonatomic,strong) UITableView* tableView;
- @end
|