GoodsSearchCell.h 1.1 KB

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