| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // OrderSalesDetailTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/26.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderSaleListDetailModel.h"
- #define orderTextFont [UIFont systemFontOfSize:13]
- @interface OrderSalesDetailTableViewCell : UITableViewCell
- @property (strong, nonatomic) UILabel *lblDetailInvoiceNo;
- @property (strong, nonatomic) UILabel *lblInvoicesTypeName;
- @property (strong, nonatomic) UILabel *lblOrderSalesTypeName;
- @property (strong, nonatomic) UILabel *lblSalesDetailTypeName;
- @property (strong, nonatomic) UILabel *lblOnlyCode;
- @property (strong, nonatomic) UILabel *lblCode;
- @property (strong, nonatomic) UILabel *lblBrandName;
- @property (strong, nonatomic) UILabel *lblKindName;
- @property (strong, nonatomic) UILabel *lblVarietyName;
- @property (strong, nonatomic) UILabel *lblSeriesName;
- @property (strong, nonatomic) UILabel *lblUnitName;
- @property (strong, nonatomic) UILabel *lblSpecification;
- @property (strong, nonatomic) UILabel *lblGradeName;
- @property (strong, nonatomic) UILabel *lblColorNumber;
- @property (strong, nonatomic) UILabel *lblOrderQuantity;
- @property (strong, nonatomic) UILabel *lblSalesQuantity;
- @property (strong, nonatomic) UILabel *lblSalesPrice;
- @property (strong, nonatomic) UILabel *lblGoodsSettlementPrice;
- @property (strong, nonatomic) UILabel *lblGoodsSettlementAmount;
- @property (strong, nonatomic) UILabel *lblAmount;
- @property (strong, nonatomic) UILabel *lblMarkedPrice;
- @property (strong, nonatomic) UILabel *lblDiscount;
- -(void)parseOrderSalesDetailInfo:(OrderSaleListDetailModel *)orderItem;
- @end
|