| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // NewInventoryUnfreezeViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/5/15.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "NewInventoryUnfreezeGoodsListCell.h"
- #import "InvoiceStyleViewController.h"
- @interface NewInventoryUnfreezeViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,InventoryGoodsDelegate>
- @property(nonatomic,strong) NSMutableArray *unfreezeGoodsList;
- @property(nonatomic,strong) NSString *freezeId;
- @property(nonatomic,strong) NSString *unfreezeId;
- @property(nonatomic,assign) bool editFlag;
- @property(nonatomic,strong) NSString *styleId;
- @property(nonatomic,strong) NSString *styleName;
- /**
- tableview的headerview
- */
- @property (nonatomic,strong) UIView* headerView;
- /**
- 提交订单的tableview
- */
- @property (nonatomic,strong)UITableView *tableView;
- @property (nonatomic,strong) UIButton *btnInvoiceStyle;
- @property(nonatomic,strong) UITextField *txtRemarks;
- @property (nonatomic,strong) UIButton *btnSubmit;
- @property (strong,nonatomic) NSMutableDictionary *heights;
- /**
- ASIDownManager
- */
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- 委托
- */
- @property (weak,nonatomic) id<InventoryGoodsDelegate> inventoryDelegate;
- @end
|