| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // OrderSalesTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/26.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderSaleListModel.h"
- @interface OrderSalesTableViewCell : UITableViewCell
- @property (strong, nonatomic) NSString *invoiceId;
- @property (strong, nonatomic) UILabel *lblInvoiceNo;
- @property (strong, nonatomic) UILabel *lblInvoiceType;
- @property (strong, nonatomic) UILabel *lblOrderSalesType;
- @property (strong, nonatomic) UILabel *lblCustomerName;
- @property (strong, nonatomic) UILabel *lblCustomerCode;
- @property (strong, nonatomic) UILabel *lblContacts;
- @property (strong, nonatomic) UILabel *lblTelephone;
- @property (strong, nonatomic) UILabel *lblGoodsAmount;
- @property (strong, nonatomic) UILabel *lblDiscountAmount;
- @property (strong, nonatomic) UILabel *lblMarkedPriceAmount;
- @property (strong, nonatomic) UILabel *lblFeeAmount;
- @property (strong, nonatomic) UILabel *lblDepositReceivedAmount;
- @property (strong, nonatomic) UILabel *lblReceivableAmount;
- @property (strong, nonatomic) UILabel *lblTotalAmount;
- @property (strong, nonatomic) UILabel *lblTotalElse;
- @property (strong, nonatomic) UILabel *lblAccountReceivableAmount;
- @property (strong, nonatomic) UILabel *lblToSalesAmount;
- @property (strong, nonatomic) UILabel *TlbloFactSalesAmount;
- @property (strong, nonatomic) UILabel *lblUseEarnestAmount;
- @property (strong, nonatomic) UILabel *lblTotalEarnestAmount;
- @property (strong, nonatomic) UILabel *lblReceivableSum;
- @property (strong, nonatomic) UILabel *lblAccountDate;
- @property (strong, nonatomic) UILabel *lblOrganizationName;
- @property (strong, nonatomic) UILabel *lblStaffName;
- -(void)parseOrderSalesInfo:(OrderSaleListModel *)orderItem;
- @end
|