SubmitOrderTableViewCell.h 1.2 KB

123456789101112131415161718192021222324252627282930
  1. //
  2. // SubmitOrderCellTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/22.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ShopCartItemModel.h"
  10. #import "SubmitOrderFrame.h"
  11. #import "SubmitOrderCellDelegate.h"
  12. @interface SubmitOrderTableViewCell : UITableViewCell<UITextFieldDelegate>
  13. @property(strong) UILabel * lblCode;//产品编码
  14. @property(strong) UILabel * lblCartId;//购物车ID
  15. @property(strong) UILabel * lblMarkedPrice;//标价
  16. @property(strong) UILabel * lblBrandName;//品牌
  17. @property(strong) UILabel * lblOnlyCode;//唯一编码
  18. @property(strong) UILabel * lblColorNumber;//色号
  19. @property(strong) UILabel * lblSpecification;//规格
  20. @property(strong) UILabel * lblGradeName;//等级
  21. @property(strong) UILabel * lblWarehouseName;//库区
  22. @property(strong) UILabel * lblInventoryID;//单号ID
  23. @property(nonatomic,strong) NSString *hiddenID;//购物车ID
  24. @property(strong) UITextField * txtSalesQuantity;//销售数量
  25. @property(weak) id<SubmitOrderCellDelegate> delegate;//委托函数
  26. @property(strong) UITextField * txtSalesPrice;//售价
  27. @property(strong) ShopCartItemModel *cartItemModel;//购物车类
  28. -(void)parseOrderInfo:(SubmitOrderFrame *)orderFrame;//订单frame
  29. @end