OrderSalesDetailTableViewCell.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // OrderSalesDetailTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/26.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OrderSaleListDetailModel.h"
  10. #define orderTextFont [UIFont systemFontOfSize:13]
  11. @interface OrderSalesDetailTableViewCell : UITableViewCell
  12. @property (strong, nonatomic) UILabel *lblDetailInvoiceNo;
  13. @property (strong, nonatomic) UILabel *lblInvoicesTypeName;
  14. @property (strong, nonatomic) UILabel *lblOrderSalesTypeName;
  15. @property (strong, nonatomic) UILabel *lblSalesDetailTypeName;
  16. @property (strong, nonatomic) UILabel *lblOnlyCode;
  17. @property (strong, nonatomic) UILabel *lblCode;
  18. @property (strong, nonatomic) UILabel *lblBrandName;
  19. @property (strong, nonatomic) UILabel *lblKindName;
  20. @property (strong, nonatomic) UILabel *lblVarietyName;
  21. @property (strong, nonatomic) UILabel *lblSeriesName;
  22. @property (strong, nonatomic) UILabel *lblUnitName;
  23. @property (strong, nonatomic) UILabel *lblSpecification;
  24. @property (strong, nonatomic) UILabel *lblGradeName;
  25. @property (strong, nonatomic) UILabel *lblColorNumber;
  26. @property (strong, nonatomic) UILabel *lblOrderQuantity;
  27. @property (strong, nonatomic) UILabel *lblSalesQuantity;
  28. @property (strong, nonatomic) UILabel *lblSalesPrice;
  29. @property (strong, nonatomic) UILabel *lblGoodsSettlementPrice;
  30. @property (strong, nonatomic) UILabel *lblGoodsSettlementAmount;
  31. @property (strong, nonatomic) UILabel *lblAmount;
  32. @property (strong, nonatomic) UILabel *lblMarkedPrice;
  33. @property (strong, nonatomic) UILabel *lblDiscount;
  34. -(void)parseOrderSalesDetailInfo:(OrderSaleListDetailModel *)orderItem;
  35. @end