OtherInStorageGoodsListCell.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // OtherInStorageGoodsListCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/25.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OtherInStorageGoodsSearchListModel.h"
  10. #import "OrderQuantity.h"
  11. @interface OtherInStorageGoodsListCell : UITableViewCell<UITextFieldDelegate>
  12. @property(nonatomic,strong) UILabel *lblGoodsName;
  13. @property(nonatomic,strong) UIButton *btnDelete;
  14. @property(nonatomic,strong) UIView *topSeparator;
  15. @property(nonatomic,strong) UILabel *lblGoodsCode;
  16. @property(nonatomic,strong) UILabel *lblOnlyCode;
  17. @property(nonatomic,strong) UITextField *txtColorNumber;
  18. @property(nonatomic,strong) UILabel *lblSpecification;
  19. @property(nonatomic,strong) UILabel *lblGrade;
  20. @property(nonatomic,strong) UILabel *lblBrand;
  21. @property(nonatomic,strong) UILabel *lblWarehouse;
  22. @property(nonatomic,strong) UILabel *lblPostionNumber;
  23. @property(nonatomic,strong) UIView *middleSeparator;
  24. @property(nonatomic,strong) UILabel *lblCanSalesQuantity;
  25. @property(nonatomic,strong) UILabel *lblInventoryQuantity;
  26. @property(nonatomic,strong) UITextField *txtEnterQuantity;
  27. @property(nonatomic,strong) UITextField *txtEnterPrice;
  28. @property(nonatomic,strong) UIButton *btnAddQuantity;
  29. @property(nonatomic,strong) UIButton *btnSubtractQuantity;
  30. @property(nonatomic,strong) UIView *bottomSeparator;
  31. @property(nonatomic,assign) NSInteger index;
  32. @property(nonatomic,weak) id<SalesInStorageDelegate> inStorageDelegate;
  33. @property(nonatomic,strong) OtherInStorageGoodsSearchListModel* inStorageGoodsListModel;
  34. -(void)setOtherInStorageGoodsModel:(OtherInStorageGoodsSearchListModel*) goodsListModel;
  35. @end