| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // InventoryCostSearchCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/11/16.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- #import "BaseIDAndNameProtocol.h"
- #import "StatusInfoTextVC.h"
- #import "SideSlipConfig.h"
- #import "BrandSearchViewController.h"
- #import "WareSearchViewController.h"
- @interface InventoryCostSearchCell : SideSlipBaseTableViewCell <UITextFieldDelegate,BaseIDAndNameProtocol,StatusInfoTextDelegate>
- @property (weak, nonatomic) IBOutlet UITextField *txtCode;
- @property (weak, nonatomic) IBOutlet UITextField *txtOnlyCode;
- @property (weak, nonatomic) IBOutlet UITextField *txtSpecification;
- @property (weak, nonatomic) IBOutlet UIButton *btnWarehouseArea;
- @property (weak, nonatomic) IBOutlet UIButton *btnBrand;
- @property (weak, nonatomic) IBOutlet UILabel *lblFilterZeroInventory;
- @property(nonatomic,strong) NSString *warehouseId;
- @property (copy, nonatomic) NSString *wareid; // 仓库id 211110
- @property(nonatomic,strong) NSString *brandId;
- @property (strong,nonatomic) SideSlipModel *regionModel;
- /**
- 过滤零库存标示
- */
- @property (assign,nonatomic) BOOL isfilterQuantityEqZero;
- @end
|