| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- //
- // NewDeliveryListCellTableViewCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/7/10.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:新增配送列表明细单元格
- #import <UIKit/UIKit.h>
- #import "StatusInfoTextVC.h"
- #import "NewDeliveryReceiptModel.h"
- #import "NewDeliveryReceiptVC.h"
- #import "NewDeliveryKeyBoardDelegate.h"
- @protocol DataListTableViewCellDetegate <NSObject>
- /**
- 设置回执类型
- @param path <#path description#>
- */
- - (void)setReceiptType:(NSIndexPath*) path;
- @end
- @interface NewDeliveryListTableViewCell : UITableViewCell<StatusInfoTextDelegate,UITextFieldDelegate>
- /**
- 编码
- */
- @property (strong,nonatomic) UILabel * code;
- @property (strong,nonatomic) UILabel * lblOnlyCode;
- /**
- 送货数量
- */
- @property (strong,nonatomic) UILabel * deliveryQuantity;
- /**
- 回执数量
- */
- @property (strong,nonatomic) UITextField *receiptQuantity;
- /**
- 出库数量
- */
- @property (strong,nonatomic) UILabel * outQuantity;
- /**
- 回执类型
- */
- @property (strong,nonatomic) UIButton *btstate;
- /**
- 备注
- */
- @property (strong,nonatomic) UITextField *remark;
- /**
- 编码
- */
- @property (strong,nonatomic) NSString * sCode;
- /**
- 送货数量
- */
- @property (strong,nonatomic) NSString * sDeliveryQuantity;
- /**
- 回执类型
- */
- @property (strong,nonatomic) NSString * sReceiptType;
- /**
- 回执数量
- */
- @property (strong,nonatomic) NSString * sReceiptQuantity;
- /**
- 回执备注
- */
- @property (strong,nonatomic) NSString * sReceiptRemarks;
- /**
- 出库数量
- */
- @property (strong,nonatomic) NSString * sOutQuantity;
- /**
- 明细id
- */
- @property (strong,nonatomic) NSString * sDetailID;
- /**
- 发票id
- */
- @property (strong,nonatomic) NSString * sInvoiceID;
- /**
- 发票明细id
- */
- @property (strong,nonatomic) NSString * sInvoiceDetailID;
- /**
- 回执类型
- */
- @property (strong,nonatomic)NSString *receiptType;
- /**
- 配送回执模型
- */
- @property (copy,nonatomic) NewDeliveryReceiptModel* model;
- /**
- 配送单元格代理
- */
- @property (nonatomic, weak) id <DataListTableViewCellDetegate> delegate;
- /**
- 设置配送回执单元格UI和数据
- @param model <#model description#>
- @param receiptType <#receiptType description#>
- */
- - (void)parseInfoModel:(NewDeliveryReceiptModel *)model receiptType:(NSString*)receiptType;
- /**
- 索引路径
- */
- @property (strong,nonatomic) NSIndexPath *myIndexPath;
- /**
- 单元格索引
- */
- @property (nonatomic) NSInteger cellIndex;
- /**
- 配送回执键盘代理
- */
- @property (nonatomic, weak) id<NewDeliveryKeyBoardDelegate> nddelegate;
- /**
- 是否有小数点
- */
- @property (nonatomic)BOOL isHaveDian;
- @end
|