OrderSalesTableViewCell.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // OrderSalesTableViewCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/5/26.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:订单销售单列表单元格
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "OrderSaleListModel.h"
  12. @interface OrderSalesTableViewCell : UITableViewCell
  13. /**
  14. 单据类型
  15. */
  16. @property (strong,nonatomic) UILabel *lblInvoiceType;
  17. /**
  18. 客户名称
  19. */
  20. @property (strong,nonatomic) UILabel *lblCustomerName;
  21. @property (strong,nonatomic) UILabel *lblCustomerAddress;
  22. @property (strong,nonatomic) UILabel *lblTelephone;
  23. /**
  24. 小计
  25. */
  26. @property (strong,nonatomic) UILabel *lblTotalAmount;
  27. /**
  28. 舍零¥%@;货款¥%@
  29. */
  30. @property (strong,nonatomic) UILabel *lblTotalElse;
  31. /**
  32. 日期
  33. */
  34. @property (strong,nonatomic) UILabel *lblAccountDate;
  35. /**
  36. 部门
  37. */
  38. @property (strong,nonatomic) UILabel *lblOrganizationName;
  39. /**
  40. 业务员
  41. */
  42. @property (strong,nonatomic) UILabel *lblStaffName;
  43. - (void)parseOrderSalesInfo:(OrderSaleListModel *)orderItem;
  44. @end