| 123456789101112131415161718192021222324252627282930 |
- //
- // SubmitOrderCellTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/22.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ShopCartItemModel.h"
- #import "SubmitOrderFrame.h"
- #import "SubmitOrderCellDelegate.h"
- @interface SubmitOrderTableViewCell : UITableViewCell<UITextFieldDelegate>
- @property(strong) UILabel * lblCode;//产品编码
- @property(strong) UILabel * lblCartId;//购物车ID
- @property(strong) UILabel * lblMarkedPrice;//标价
- @property(strong) UILabel * lblBrandName;//品牌
- @property(strong) UILabel * lblOnlyCode;//唯一编码
- @property(strong) UILabel * lblColorNumber;//色号
- @property(strong) UILabel * lblSpecification;//规格
- @property(strong) UILabel * lblGradeName;//等级
- @property(strong) UILabel * lblWarehouseName;//库区
- @property(strong) UILabel * lblInventoryID;//单号ID
- @property(nonatomic,strong) NSString *hiddenID;//购物车ID
- @property(strong) UITextField * txtSalesQuantity;//销售数量
- @property(weak) id<SubmitOrderCellDelegate> delegate;//委托函数
- @property(strong) UITextField * txtSalesPrice;//售价
- @property(strong) ShopCartItemModel *cartItemModel;//购物车类
- -(void)parseOrderInfo:(SubmitOrderFrame *)orderFrame;//订单frame
- @end
|