// // DeliveryRequirementDetailControllerViewController.h // IBOSSHSH // // Created by ssl on 2018/1/16. // Copyright © 2018年 elongtian. All rights reserved. // #import "BaseViewController.h" #import "DispatchRequirementListDetailModel.h" #import "DispatchRequirementDetailListCell.h" @interface DispatchRequirementDetailController : BaseViewController /** 高度 */ @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 *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 *nextDeliveryDate; /** 位置 */ @property (strong,nonatomic) UILabel *location; /** 账务日期 */ @property (strong,nonatomic) UILabel *lbAccountDate; @property (strong,nonatomic) UILabel *lbTruckNumber; @property (strong,nonatomic) UILabel *lblDispatchNo; @property (strong,nonatomic) UILabel *lblCustomerCode; @property (strong,nonatomic) UILabel *lblDeliveryArea; @property (strong,nonatomic) UILabel *lblDeliveryTime; @property (strong,nonatomic) UILabel *lblCustomerTelephone; @property (strong,nonatomic) UILabel *lblDeliveryWeight; @property (strong,nonatomic) UILabel *lblChargeAmount; @property (strong,nonatomic) UILabel *lblDeliveryChargeAmount; @property (strong,nonatomic) UILabel *lblInstallChargeAmount; @property (strong,nonatomic) UILabel *lblCollectionAmount; /** 配送人员 */ @property (strong,nonatomic) UILabel *lbServiceStaffName; /** 创建日期 */ @property (strong,nonatomic) UILabel *lbCreatetime; /** 备注 */ @property (strong,nonatomic) UILabel *lbRemarks; @property (strong,nonatomic) UILabel *lblCreater; /** 下载类 */ @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) DispatchRequirementListDetailModel *model; /** 配送信息数组 */ @property (strong,nonatomic) NSMutableArray *infoList; /** 照片列表 */ @property (strong,nonatomic) NSMutableArray *photoList; @property (strong,nonatomic) NSMutableArray *signList; @property (strong,nonatomic) UIImageView *signImgView; @property(nonatomic,strong) UIButton *btnCancel; /** scroll view */ @property (strong,nonatomic) UIScrollView *scroll; /** content view */ @property (strong,nonatomic) UIView * contentView; /** header view */ @property (nonatomic,strong) UIView *headerView; @property (nonatomic,strong) UIView *footerView; /** 回执ID */ @property (nonatomic,strong) NSString *receiptID; @property (nonatomic,strong) NSString *receiptTypeFlag; @property(nonatomic,weak) id refreshDelegate; @end