| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- //
- // NewInstallDetailListsCell.h
- // IBOSS
- //
- // Created by apple on 16/1/12.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:新增安装明细单元格
- #import <UIKit/UIKit.h>
- #import "NewInstallDetailListsCellDelegate.h"
- #import "NewInstallIItemModel.h"
- @interface NewInstallDetailListsCell : UITableViewCell<UITextFieldDelegate>
- /**
- 产品编码
- */
- @property (nonatomic, strong) UILabel *code;
- @property (nonatomic, strong) UILabel *lblOnlyCode;
- /**
- 产品名称
- */
- @property (nonatomic, strong) UILabel *goodsName;
- /**
- 安装数量
- */
- @property (nonatomic, strong) UILabel *installQuantity;
- /**
- 完成数量
- */
- @property (nonatomic, strong) UILabel *completedQuantity;
- /**
- 单位
- */
- @property (nonatomic, strong) UILabel *unit;
- /**
- 回执类型
- */
- @property (nonatomic, strong) NSString *receiptType;
- /**
- 回执类型按钮
- */
- @property (nonatomic, strong) UIButton *btnReceiptType;
- /**
- 铺贴方式
- */
- @property (nonatomic, strong) NSString *payStyle;
- /**
- 铺贴方式按钮
- */
- @property (nonatomic, strong) UIButton *btnPayStyle;
- /**
- 回执数量
- */
- @property (nonatomic, strong) UITextField *receiptQuantity;
- /**
- 回执箱
- */
- @property (nonatomic, strong) UILabel *receiptBox;
- /**
- 出库数量
- */
- @property (nonatomic, strong) UILabel *lblOutquality;
- /**
- 回执片
- */
- @property (nonatomic, strong) UILabel *receiptPiece;
- /**
- 平米数
- */
- @property (nonatomic, strong) UILabel *mm;
- /**
- 包
- */
- @property (nonatomic, strong) UILabel *package;
- /**
- 安装
- */
- @property (nonatomic, strong) NewInstallIItemModel *model;
- /**
- 备注
- */
- @property (nonatomic, strong) UITextField *remark;
- /**
- 安装单id
- */
- @property (nonatomic,strong) NSString *installId;
- /**
- 明细id
- */
- @property (nonatomic,strong) NSString *detailId;
- /**
- 销售明细id
- */
- @property (nonatomic,strong) NSString *salesDetailId;
- /**
- 单元格索引
- */
- @property (nonatomic) NSInteger cellIndex;
- /**
- cell高度
- */
- @property (nonatomic) CGFloat cellHeight;
- /**
- 设置cell数据
- @param model <#model description#>
- */
- - (void)parseInfoModel:(NewInstallIItemModel*)model type:(NSString *) type;
- /**
- 安装委托
- */
- @property (nonatomic, weak) id<NewInstallDetailListsCellDelegate> installDelegate;
- /**
- 小数点
- */
- @property (nonatomic) BOOL isHaveDian;
- @end
|