NewSalesGoodsDetailCell.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // NewSalesGoodsDetailCell.h
  3. // IBOSSmini
  4. //
  5. // Created by ssl on 2018/2/27.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "InventoryModel.h"
  10. #import "NSString+Tools.h"
  11. #import "OrderListDelegate.h"
  12. #import "OrderQuantity.h"
  13. #define orderTextFont [UIFont systemFontOfSize:13]
  14. @interface NewSalesGoodsDetailCell : UITableViewCell<UITextFieldDelegate>
  15. @property(nonatomic,strong)UILabel *lblGoodsName;
  16. @property(nonatomic,strong)UIView *vDelete;
  17. @property(nonatomic,strong)UIView *topSeparator;
  18. @property(nonatomic,strong)UILabel *lblGoodsCode;
  19. @property(nonatomic,strong)UILabel *lblOnlyCode;
  20. @property(nonatomic,strong)UILabel *lblColorNumber;
  21. @property(nonatomic,strong)UILabel *lblSpecification;
  22. @property(nonatomic,strong)UILabel *lblWarehouseArea;
  23. @property(nonatomic,strong)UITextField *txtRemarks;
  24. @property(nonatomic,strong)UIButton *btnUsePosition;
  25. @property(nonatomic,strong)UILabel *lblGrade;
  26. @property(nonatomic,strong)UIView *middleSeparator;
  27. @property(nonatomic,strong)UILabel *lblDiscount;
  28. @property(nonatomic,strong) UITextField *txtSalesPrice;
  29. @property(nonatomic,strong) UITextField *txtSalesQuantity;
  30. @property(nonatomic,strong)UIView *bottomSeparator;
  31. @property(nonatomic,assign) NSInteger cellIndex;
  32. @property(nonatomic,strong) InventoryModel *inventoryModel;
  33. @property(nonatomic,assign) int editStatus;
  34. @property(nonatomic,strong) id<OrderListDelegate> orderDelegate;
  35. - (void)setInventoryCell:(InventoryModel *)inventoryDetailModel editStatus:(int)flag editFlag:(int) editFlag;
  36. @end