| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- //
- // DeliveryRequirementDetailControllerViewController.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/16.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "DeliveryListDetailModel.h"
- #import "DeliveryListDetailCell.h"
- @interface DeliveryRequirementDetailController : BaseViewController <UITextFieldDelegate,UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout, UITableViewDataSource,UITableViewDelegate>
- /**
- 高度
- */
- @property (assign,nonatomic) int mHeight;
- /**
- 配送单id
- */
- @property (strong,nonatomic) NSString *deliveryId;
- /**
- 安排单id
- */
- @property (strong,nonatomic) NSString *arrangementId;
- /**
- 回执单号
- */
- @property (strong,nonatomic) NSString *recReceiptNo;
- /**
- 回执单号控件
- */
- @property (strong,nonatomic) UILabel * receiptNo;
- /**
- 安排单号控件
- */
- @property (strong,nonatomic) UILabel *arrangementNo;
- /**
- 回执类型控件
- */
- @property (strong,nonatomic) UILabel *recReceiptType;
- /**
- 客户名称控件
- */
- @property (strong,nonatomic) UILabel *customerName;
- /**
- 联系人控件
- */
- @property (strong,nonatomic) UILabel *contacts;
- /**
- 电话控件
- */
- @property (strong,nonatomic) UILabel *telephone;
- /**
- 送货单号
- */
- @property (strong,nonatomic) UILabel *deliveryNo;
- /**
- 送货地址
- */
- @property (strong,nonatomic) UILabel *deliveryAddress;
- /**
- 应收金额
- */
- @property (strong,nonatomic) UILabel *receivables;
- /**
- 已回执金额
- */
- @property (strong,nonatomic) UILabel *completeReceivables;
- /**
- 回执金额
- */
- @property (strong,nonatomic) UILabel *receiptAmount;
- /**
- 应收方式
- */
- @property (strong,nonatomic) UILabel *receivablesType;
- /**
- 回执类型
- */
- @property (strong,nonatomic) UILabel *receiptType;
- /**
- 推迟送货日期
- */
- @property (strong,nonatomic)UILabel *nextDeliveryDate;
- /**
- 位置
- */
- @property (strong,nonatomic) UILabel *location;
- /**
- 账务日期
- */
- @property (strong,nonatomic) UILabel *lbAccountDate;
- /**
- 配送人员
- */
- @property (strong,nonatomic) UILabel *lbServiceStaffName;
- /**
- 创建日期
- */
- @property (strong,nonatomic) UILabel *lbCreatetime;
- /**
- 备注
- */
- @property (strong,nonatomic) UILabel *lbRemarks;
- /**
- 下载类
- */
- @property (nonatomic,strong) ASIDownManager *mDownManager;
- /**
- 下载数组
- */
- @property (strong,nonatomic) NSDictionary *dataList;
- /**
- 下载tableview
- */
- @property (strong,nonatomic) UITableView *tableView;
- /**
- 图片下载collection view
- */
- @property (strong,nonatomic) UICollectionView *collectionView;
- /**
- 配送明细model
- */
- @property (strong,nonatomic) DeliveryListDetailModel *model;
- /**
- 配送信息数组
- */
- @property (strong,nonatomic) NSMutableArray *infoList;
- /**
- 照片列表
- */
- @property (strong,nonatomic) NSMutableArray *photoList;
- /**
- scroll view
- */
- @property (strong,nonatomic) UIScrollView *scroll;
- /**
- content view
- */
- @property (strong,nonatomic) UIView * contentView;
- /**
- header view
- */
- @property (nonatomic,strong) UIView *headerView;
- /**
- 回执ID
- */
- @property (nonatomic,strong) NSString *receiptID;
- @end
|