| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- //
- // InventorySearchCell.h
- // IBOSS
- //
- // Created by apple on 2017/5/23.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:库存明细表查询条件单元格
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- @interface InventorySearchCell : SideSlipBaseTableViewCell
- /**
- 库区
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnWare;
- /**
- 品牌
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnBrand;
- /**
- 过滤零库存
- */
- @property (strong,nonatomic) IBOutlet UILabel *lblFilterQuantityEqZero;
- /**
- 商品编码
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtCode;
- /**
- 唯一编码
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtOnlyCode;
- /**
- 商品名称
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtGoodName;
- @property (strong, nonatomic) IBOutlet UIButton *btnPositionNumber;
- @property (strong, nonatomic) IBOutlet UIButton *btnCeaseFlag;
- @property (weak, nonatomic) IBOutlet UITextField *txtGoodsSpecification;
- @property (weak, nonatomic) IBOutlet UITextField *txtMinimumCanSalesQuantity;
- @property (weak, nonatomic) IBOutlet UITextField *txtMaximumCanSalesQuantity;
- /**
- 库区
- */
- @property (copy, nonatomic) NSString *ware;
- /**
- 品牌
- */
- @property (copy, nonatomic) NSString *brand;
- @property (copy, nonatomic) NSString *positionNumberValue;
- @property(nonatomic,strong) NSMutableArray *ceaseFlagList;
- @property(nonatomic,strong) NSString *ceaseFlagId;
- /**
- 过滤零库存标示
- */
- @property (assign,nonatomic) BOOL isfilterQuantityEqZero;
- @end
|