SalesOutStorageListCell.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // SalesOutStorageListCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/10.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SalesOutStorageListModel.h"
  10. #import "NSString+Tools.h"
  11. #import "SalesOutStorageListModel.h"
  12. #define orderTextFont [UIFont systemFontOfSize:13]
  13. @protocol SalesOutStorageListCellDelegate <NSObject>
  14. @optional
  15. -(void) goCorrect:(SalesOutStorageListModel *)model;
  16. -(void)goDetail:(SalesOutStorageListModel*)model;
  17. @end
  18. @interface SalesOutStorageListCell : UITableViewCell
  19. @property(nonatomic,strong)SalesOutStorageListModel* outStorageModel;
  20. @property(nonatomic,strong) UILabel *lblOutStorageNo;
  21. @property(nonatomic,strong) UILabel *lblOutStorageStatus;
  22. @property (nonatomic, strong) UIView *topSeparatorView;
  23. @property(nonatomic,strong) UILabel *lblCustomerName;
  24. @property(nonatomic,strong) UILabel *lblCustomerTelephone;
  25. @property(nonatomic,strong) UILabel *lblCustomerCode;
  26. @property(nonatomic,strong) UILabel *lblStaff;
  27. @property(nonatomic,strong) UILabel *lblBusinessDepartment;
  28. @property(nonatomic,strong) UILabel *lblCreater;
  29. @property(nonatomic,strong) UILabel *lblAccountDate;
  30. @property(nonatomic,strong) UILabel *lblCustomerAddress;
  31. @property(nonatomic,strong) UILabel *lblGoodsQuantity;
  32. @property (nonatomic, strong) UIView *middleSeparatorView;
  33. @property(nonatomic,strong) UIButton *btnGoodsDetail;
  34. @property(nonatomic,strong) UIButton *btnCorrect;
  35. @property (nonatomic, strong) UIView *bottomSeparatorView;
  36. @property(nonatomic,weak) id<SalesOutStorageListCellDelegate> salesOutStorageDelegate;
  37. - (void)setSalesOutStorageModel:(SalesOutStorageListModel *)salesOutStorageModel;
  38. @end