| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- //
- // 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 <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 *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<FollowUpBrowseProtocol> refreshDelegate;
- @end
|