| 123456789101112131415161718192021222324252627 |
- //
- // WareHouseCell.h
- // IBOSSIPAD
- //
- // Created by iHope on 14-7-21.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderSearchFrame.h"
- @interface GoodsSearchCell : UITableViewCell
- @property(strong) UILabel *lblCode;//产品编码
- @property(strong) UILabel *lblOnlyCode;//唯一编码
- @property(strong) UILabel *lblBrandName;//品牌
- @property(strong) UILabel *lblGradeName;//等级
- @property(strong) UILabel *lblSpecification;//规格
- @property(strong) UILabel *lblColorNumber;//色号
- @property(strong) UILabel *lblWareHouseName;//库区
- @property(strong) UILabel *lblInventoryId;//单号Id
- @property(strong,nonatomic) UITextField *txtQuantity;//销售数量
- @property(nonatomic) int cellIndex;//单元格索引
- @property(nonatomic,strong) GoodsSearchItemModel *searchItemModel;//产品搜索类
- @property(weak) id<GoodsSearchVCCellDelegate> delegate;//产品搜索委托
- -(void)parseOrderInfo:(OrderSearchFrame *)orderFrame;//产品frame类
- @property(weak) UIViewController * parentVC;//父视图控制器
- @end
|