| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- //
- // NewRepairReceiptVC.h
- // IBOSS
- //
- // Created by apple on 16/1/8.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:新增维修回执控制器
- #import "BaseViewController.h"
- #import "BRDatePickerView.h"
- #import "NewRepairDetailListsCellDelegate.h"
- #import "SettlementTypeVC.h"
- #import "ParseNewRepairItem.h"
- #import "DKPhotoPickerBrowserViewController.h"
- //#import "MapViewController.h"
- #import "DKPhotoPickerViewController.h"
- #import "FollowUpBrowseProtocol.h"
- #import "RepairUnreceiptVC.h"
- #import "NSString+Tools.h"
- @interface NewRepairReceiptVC : BaseViewController
- /**
- 产品编码
- */
- @property (strong,nonatomic) UITextField *code;
- /**
- 回执金额
- */
- @property (strong,nonatomic) UITextField *receiptAmount;
- /**
- 推迟日期
- */
- @property (strong,nonatomic) UIButton *delayDate;
- @property (strong,nonatomic) UILabel *lblQuestionDesc;
- @property (strong,nonatomic) UILabel *lblTitleQuestionDesc;
- @property (strong,nonatomic)UIView *vQuestionDesc;
- @property (strong,nonatomic)UIView *vRescheduleDate;
- /**
- 回执类型
- */
- @property (strong,nonatomic) UIButton *receiptType;
- /**
- 收款方式
- */
- @property (strong,nonatomic) UIButton *settlementType;
- /**
- 客服人员
- */
- @property (strong,nonatomic) UILabel *lblStaffNameValue;
- /**
- 回执金额
- */
- @property (strong,nonatomic) UILabel *lblReceivablesValue;
- /**
- 已回执金额
- */
- @property (strong,nonatomic) UILabel *lblCompleteAmountValue;
- /**
- 维修日期
- */
- @property (strong,nonatomic) UILabel *lblRepairDateValue;
- /**
- 商品编码
- */
- @property (strong,nonatomic) NSString *sCode;
- /**
- 回执金额
- */
- @property (strong,nonatomic) NSString *sReceiptAmount;
- /**
- 推迟日期
- */
- @property (strong,nonatomic) NSString *sDelayDate;
- /**
- 回执类型
- */
- @property (strong,nonatomic) NSString *sReceiptType;
- /**
- 收款方式id
- */
- @property (strong,nonatomic) NSString *sSettlementType;
- /**
- 收款方式名称
- */
- @property (strong,nonatomic) NSString *sSettlementTypeName;
- /**
- 手工费
- */
- @property (strong,nonatomic) NSString *sEarnestFee;
- /**
- 是否存在手工费
- */
- @property (strong,nonatomic) NSString *sExistHandleFee;
- /**
- 备注
- */
- @property (strong,nonatomic) NSString *sRemarks;
- /**
- 维修id
- */
- @property (strong,nonatomic) NSString *repairId;
- /**
- 客户id
- */
- @property (strong,nonatomic) NSString *customerId;
- @property (strong,nonatomic) NSString *questionDesc;
- /**
- 安排单id
- */
- @property (strong,nonatomic) NSString *arrangementId;
- /**
- 组织id
- */
- @property (strong,nonatomic) NSString *organizationId;
- /**
- 业务员
- */
- @property (strong,nonatomic) NSString *salesman;
- /**
- 操作标识
- */
- @property (strong,nonatomic) NSString *operationFlag;
- /**
- 日历类
- */
- @property (strong)BRDatePickerView *dealDatePicker;
- /**
- 图片路径数组
- */
- @property (strong,nonatomic) NSMutableArray *imagePaths;
- /**
- table view
- */
- @property (nonatomic,strong) UITableView *vCustomTableView;
- /**
- collection view
- */
- @property (nonatomic,strong) UICollectionView *collectionView;
- /**
- 相册数组
- */
- @property (nonatomic , strong) NSMutableArray *assets;
- /**
- 新增维修逻辑处理类
- */
- @property (nonatomic , strong)ParseNewRepairItem *model;
- /**
- 单元格索引
- */
- @property (nonatomic) NSInteger cellIndex;
- /**
- 新增维修刷新代理
- */
- @property (nonatomic, weak) id<FollowUpBrowseProtocol> refreshDelegate;
- /**
- 分隔线
- */
- @property (nonatomic,strong) UIView *vMiddleSeparator;
- /**
- 保存按钮
- */
- @property (nonatomic,strong)UIButton *saveBtn;
- @property (nonatomic,assign) RepairUnreceiptVC *parentVC;
- @end
|