| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- //
- // OrderSalesDetailTableViewCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/5/26.
- // Copyright © 2017年 沈阳东科云信软件有限公司. 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;
- @property (strong,nonatomic) UILabel *lblOutQuantity;
- @property (strong,nonatomic) UILabel *lblOutAmount;
- @property (strong,nonatomic) UILabel *lblTelephone;
- @property (strong,nonatomic) UILabel *lblPromotionOrderSalesPrice;
- @property (strong,nonatomic) UILabel *lblPromotionRate;
- @property(nonatomic,assign) CGFloat height;
- /**
- cell的初始化ui
- */
- - (void)parseOrderSalesDetailInfo:(OrderSaleListDetailModel *)orderItem;
- @end
|