OrderSalesTableViewCell.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // OrderSalesTableViewCell.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 "OrderSaleListModel.h"
  10. @interface OrderSalesTableViewCell : UITableViewCell
  11. @property (strong, nonatomic) NSString *invoiceId;
  12. @property (strong, nonatomic) UILabel *lblInvoiceNo;
  13. @property (strong, nonatomic) UILabel *lblInvoiceType;
  14. @property (strong, nonatomic) UILabel *lblOrderSalesType;
  15. @property (strong, nonatomic) UILabel *lblCustomerName;
  16. @property (strong, nonatomic) UILabel *lblCustomerCode;
  17. @property (strong, nonatomic) UILabel *lblContacts;
  18. @property (strong, nonatomic) UILabel *lblTelephone;
  19. @property (strong, nonatomic) UILabel *lblGoodsAmount;
  20. @property (strong, nonatomic) UILabel *lblDiscountAmount;
  21. @property (strong, nonatomic) UILabel *lblMarkedPriceAmount;
  22. @property (strong, nonatomic) UILabel *lblFeeAmount;
  23. @property (strong, nonatomic) UILabel *lblDepositReceivedAmount;
  24. @property (strong, nonatomic) UILabel *lblReceivableAmount;
  25. @property (strong, nonatomic) UILabel *lblTotalAmount;
  26. @property (strong, nonatomic) UILabel *lblTotalElse;
  27. @property (strong, nonatomic) UILabel *lblAccountReceivableAmount;
  28. @property (strong, nonatomic) UILabel *lblToSalesAmount;
  29. @property (strong, nonatomic) UILabel *TlbloFactSalesAmount;
  30. @property (strong, nonatomic) UILabel *lblUseEarnestAmount;
  31. @property (strong, nonatomic) UILabel *lblTotalEarnestAmount;
  32. @property (strong, nonatomic) UILabel *lblReceivableSum;
  33. @property (strong, nonatomic) UILabel *lblAccountDate;
  34. @property (strong, nonatomic) UILabel *lblOrganizationName;
  35. @property (strong, nonatomic) UILabel *lblStaffName;
  36. -(void)parseOrderSalesInfo:(OrderSaleListModel *)orderItem;
  37. @end