NewSalesExternalCoordinateCell.h 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NewSalesExternalCoordinateCell.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 "ExternalCoordinateGoodsModel.h"
  10. #import "NSString+Tools.h"
  11. #import "OrderListDelegate.h"
  12. @interface NewSalesExternalCoordinateCell : UITableViewCell<UITextFieldDelegate>
  13. @property(nonatomic,strong)UILabel *lblSupplier;
  14. @property(nonatomic,strong)UIView *vDelete;
  15. @property(nonatomic,strong)UIView *topSeparator;
  16. @property(nonatomic,strong)UILabel *lblGoodsCode;
  17. @property(nonatomic,strong)UILabel *lblOnlyCode;
  18. @property(nonatomic,strong)UILabel *lblColorNumber;
  19. @property(nonatomic,strong)UILabel *lblSpecification;
  20. @property(nonatomic,strong)UILabel *lblGrade;
  21. @property(nonatomic,strong)UIView *middleSeparator;
  22. @property(nonatomic,strong)UILabel *lblDiscount;
  23. @property(nonatomic,strong) UITextField *txtSalesPrice;
  24. @property(nonatomic,strong) UITextField *txtSalesQuantity;
  25. @property(nonatomic,strong)UIView *bottomSeparator;
  26. @property(nonatomic,assign) NSInteger cellIndex;
  27. @property(nonatomic,strong) id<OrderListDelegate> orderDelegate;
  28. @property(nonatomic,strong) ExternalCoordinateGoodsModel *externalCoordinateModel;
  29. - (void)setNewExternalCoordinateGoodsCell:(ExternalCoordinateGoodsModel *)externalCoordinateGoodsModel editStatus:(NSInteger) editStatus editFlag:(NSInteger) editFlag;
  30. @end