| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // OrderSalesTableViewCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/5/26.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:订单销售单列表单元格
- //
- #import <UIKit/UIKit.h>
- #import "OrderSaleListModel.h"
- @interface OrderSalesTableViewCell : UITableViewCell
- /**
- 单据类型
- */
- @property (strong,nonatomic) UILabel *lblInvoiceType;
- /**
- 客户名称
- */
- @property (strong,nonatomic) UILabel *lblCustomerName;
- @property (strong,nonatomic) UILabel *lblCustomerAddress;
- @property (strong,nonatomic) UILabel *lblTelephone;
- /**
- 小计
- */
- @property (strong,nonatomic) UILabel *lblTotalAmount;
- /**
- 舍零¥%@;货款¥%@
- */
- @property (strong,nonatomic) UILabel *lblTotalElse;
- /**
- 日期
- */
- @property (strong,nonatomic) UILabel *lblAccountDate;
- /**
- 部门
- */
- @property (strong,nonatomic) UILabel *lblOrganizationName;
- /**
- 业务员
- */
- @property (strong,nonatomic) UILabel *lblStaffName;
- - (void)parseOrderSalesInfo:(OrderSaleListModel *)orderItem;
- @end
|