SalesSlipListCell.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // SalesSlipListCell.h
  3. // IBOSSmini
  4. //
  5. // Created by ssl on 2018/1/26.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SalesSlipListModel.h"
  10. @class SalesSlipListCell;
  11. @protocol SalesSlipListCellDelegate <NSObject>
  12. @optional
  13. -(void) goCorrect:(SalesSlipListModel *)model;
  14. -(void)goDetail:(SalesSlipListModel*)model;
  15. -(void)goEdit:(SalesSlipListModel*)model;
  16. -(void)goElectronicInvoice:(NSInteger)position;
  17. -(void)goReceivables:(SalesSlipListModel*)model;
  18. @end
  19. @interface SalesSlipListCell : UITableViewCell
  20. @property (nonatomic, strong) UILabel *orderNoLbl;
  21. @property (nonatomic, strong) UILabel *orderStatusLbl;
  22. @property (nonatomic, strong) UIView *topSeparatorView;
  23. @property (nonatomic, strong) UILabel *customerNameLbl;
  24. @property (nonatomic, strong) UILabel *customerTelephoneLbl;
  25. @property (nonatomic, strong) UILabel *customerCodeLbl;
  26. @property (nonatomic, strong) UILabel *channelLbl;
  27. @property (nonatomic, strong) UILabel *departmentLbl;
  28. @property (nonatomic, strong) UILabel *staffLbl;
  29. @property (nonatomic, strong) UILabel *creatorLbl;
  30. @property (nonatomic, strong) UILabel *accountDateLbl;
  31. @property (nonatomic, strong) UILabel *customerAddressLbl;
  32. @property (nonatomic, strong) UIView *middleSeparatorView;
  33. @property (nonatomic, strong) UILabel *goodsCountLbl;
  34. @property (nonatomic, strong) UILabel *earnestAmountLbl;
  35. @property (nonatomic, strong) UILabel *goodsAmountLbl;
  36. @property (nonatomic, strong) UIButton *goodsDetailBtn;
  37. @property (nonatomic, strong) UIButton *correctBtn;
  38. @property (nonatomic, strong) UIButton *editBtn;
  39. @property(nonatomic,strong) UIButton *receivablesBtn;
  40. @property (nonatomic, strong) UIButton *digitalInvoiceBtn;
  41. @property(nonatomic,assign)NSInteger cellIndex;
  42. @property (nonatomic, strong) UIView *bottomSeparatorView;
  43. @property (strong,nonatomic) id<SalesSlipListCellDelegate>delegate;
  44. @property(strong,nonatomic ) SalesSlipListModel* salesOrder;
  45. - (void)setSalesOrder:(SalesSlipListModel *)salesOrder;
  46. @end