123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152 |
- //
- // MyApprovalPageDetail.m
- // smartRhino
- //
- // Created by tederen on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "MyApprovalPageDetail.h"
- #import "DrawerView.h"
- #import "TabBarController.h"
- #import "MyApprovalDetailCell.h"
- #import "MyApprovalDetailModel.h"
- #import "TDNavigationBar.h"
- #import "MyWorkFlowFooterView.h"
- #import "GoDisscussView.h"
- #import "AgreeApprovalViewControllerSub.h"
- #import "DownFileViewController.h"
- #import "NextApprovalViewController.h"
- #import "MyApprovalFileCell.h"
- #import "NoteBookShareVC.h"
- #import "MyWorkWordVC.h"
- #import "MyTDTopicCreateVC.h"
- #import "MyTDGroupViewController.h"
- #import "MoveViewController.h"
- #import "HomeDetailController.h"
- #import "ChatMsgNoticeDetailVC.h"
- #import "MyTDTopicDetailVC.h"
- #import "TDInterLeterDetailVC.h"
- #import "NoteBookDetailVC.h"
- #import "TDGroupInfoListVC.h"
- #import "WorkFlowDetailsController.h"
- #import "ShareListVC.h"
- @interface MyApprovalPageDetail ()<UITableViewDelegate,UITableViewDataSource,MyWorkFlowFooterViewDelegate,TDNavigationBarDelegate,NoteBookShareVCDelegate>
- @property (nonatomic, strong) TDNavigationBar *myNavigationBar;
- @property (nonatomic, strong) UIView *myBackImageView;
- @property (nonatomic, strong) TDTableView *mytableView;
- @property (nonatomic, strong) MyWorkFlowFooterView *myfooterView2;
- @property (nonatomic, strong) MyApprovalDetailModel *currentModel;
- @property (strong, nonatomic) NoteBookShareVC *noteBookShareVC;
- //@property (assign, nonatomic) NSInteger fristStatusIndex;
- @property (nonatomic, strong) DrawerView *drawerView;
- @end
- @implementation MyApprovalPageDetail
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.fd_prefersNavigationBarHidden = YES;
- self.view.backgroundColor = UIColorHex(eeeeee);
- self.myNavigationBar.titleLabel.text = self.title;
- self.myNavigationBar.titleLabel.font = [UIFont systemFontOfSize:19.0];
- self.mytableView.backgroundColor = UIColorHex(eeeeee);
- [self.view addSubview:self.mytableView];
- [self.view addSubview:self.myBackImageView];
- [self.view addSubview:self.myNavigationBar];
- [self getData];
- [[UtilsTools getWindow] addSubview:self.noteBookShareVC.view];
- }
- #pragma mark - 审核状态决定页面控件展示
- - (void)loadCustomFooterFromStatus:(NSString *)stats{
- switch (self.pageType) {
- case Type_ONEA:
- [self loadCustomFooterFromPageTypeA:stats];
- break;
- case Type_ONEB:
- [self loadCustomFooterFromPageTypeB:stats];
- break;
- case Type_ONEC:
- // [self loadCustomFooterFromPageTypeC];
- break;
- }
- }
- #pragma mark - 底部按钮视图
- - (void)loadCustomFooterFromPageTypeA:(NSString *)stats{
- if ([stats isEqualToString:@"Wait"]) {
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"同意";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer1");
- _myfooterView2.noAgreeView.nameLab.text = @"驳回";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer");
- _myfooterView2.nextAggreView.nameLab.text = @"转审";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/3,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/3,0,kGXScreenWidth/3,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/3 * 2,0,kGXScreenWidth/3,75);
- _myfooterView2.agreeView.button.tag = 130;
- _myfooterView2.noAgreeView.button.tag = 131;
- _myfooterView2.nextAggreView.button.tag = 123;
- _myfooterView2.disscusView.hidden = YES;
- _myfooterView2.waitView.hidden = YES;
- _myfooterView2.noAgreeView.hidden = NO;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.agreeView.hidden = NO;
- }else if ([stats isEqualToString:@"Checked"]){
-
- }else if ([stats isEqualToString:@"Meeting"]){
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"同意";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer1");
- _myfooterView2.noAgreeView.nameLab.text = @"驳回";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer");
- _myfooterView2.waitView.nameLab.text = @"待定";
- _myfooterView2.waitView.imageVIew.image = IMG(@"work_footer_wait");
- _myfooterView2.disscusView.nameLab.text = @"撤会";
- _myfooterView2.disscusView.imageVIew.image = IMG(@"work_footer2");
- _myfooterView2.nextAggreView.nameLab.text = @"转审";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/5,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/5,0, kGXScreenWidth/5, 75);
- _myfooterView2.waitView.frame = CGRectMake(kGXScreenWidth/5*2,0,kGXScreenWidth/5,75);
- _myfooterView2.disscusView.frame = CGRectMake(kGXScreenWidth/5*3,0, kGXScreenWidth/5, 75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/5*4,0, kGXScreenWidth/5, 75);
- _myfooterView2.agreeView.button.tag = 130;
- _myfooterView2.noAgreeView.button.tag = 131;
- _myfooterView2.disscusView.button.tag = 121;
- _myfooterView2.nextAggreView.button.tag = 123;
- _myfooterView2.waitView.button.tag = 124;
- _myfooterView2.disscusView.hidden = NO;
- _myfooterView2.waitView.hidden = NO;
- _myfooterView2.noAgreeView.hidden = NO;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.agreeView.hidden = NO;
- }else if ([stats isEqualToString:@"Checking"]){
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"同意";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer1");
- _myfooterView2.noAgreeView.nameLab.text = @"驳回";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer");
- _myfooterView2.disscusView.nameLab.text = @"上会";
- _myfooterView2.disscusView.imageVIew.image = IMG(@"work_footer2");
- _myfooterView2.nextAggreView.nameLab.text = @"转审";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
- _myfooterView2.agreeView.button.tag = 130;
- _myfooterView2.noAgreeView.button.tag = 131;
- _myfooterView2.disscusView.button.tag = 132;
- _myfooterView2.nextAggreView.button.tag = 133;
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/4,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/4,0,kGXScreenWidth/4,75);
- _myfooterView2.disscusView.frame = CGRectMake(kGXScreenWidth/4 * 2,0,kGXScreenWidth/4,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/4 * 3,0,kGXScreenWidth/4,75);
- _myfooterView2.waitView.hidden = YES;
- _myfooterView2.disscusView.hidden = NO;
- _myfooterView2.noAgreeView.hidden = NO;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.agreeView.hidden = NO;
- }else{///Denied 拒绝
-
- }
- }
- - (void)loadCustomFooterFromPageTypeB:(NSString *)stats{
- if ([stats isEqualToString:@"Wait"]) {
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"催办";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer7");
- _myfooterView2.noAgreeView.nameLab.text = @"撤销";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer9");
- _myfooterView2.nextAggreView.nameLab.text = @"重新提交";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/3,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/3,0,kGXScreenWidth/3,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/3 + kGXScreenWidth/3-30,0,kGXScreenWidth/3,75);
- _myfooterView2.agreeView.button.tag = 220;
- _myfooterView2.noAgreeView.button.tag = 221;
- _myfooterView2.nextAggreView.button.tag = 223;
- _myfooterView2.disscusView.hidden = YES;
- _myfooterView2.waitView.hidden = YES;
- _myfooterView2.noAgreeView.hidden = NO;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.agreeView.hidden = NO;
- }else if ([stats isEqualToString:@"Checked"]){
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"下载";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer6");
- _myfooterView2.noAgreeView.hidden = YES;
- _myfooterView2.disscusView.hidden = YES;
- _myfooterView2.waitView.hidden = YES;
- _myfooterView2.nextAggreView.hidden = YES;
- _myfooterView2.agreeView.hidden = NO;
- _myfooterView2.agreeView.button.tag = 200;
- }else if ([stats isEqualToString:@"Meeting"]){
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"催办";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer7");
- _myfooterView2.noAgreeView.nameLab.text = @"撤销";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer9");
- _myfooterView2.nextAggreView.nameLab.text = @"重新提交";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/3,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/3,0,kGXScreenWidth/3,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/3 * 2,0,kGXScreenWidth/3,75);
- _myfooterView2.agreeView.button.tag = 220;
- _myfooterView2.noAgreeView.button.tag = 221;
- _myfooterView2.disscusView.hidden = YES;
- _myfooterView2.waitView.hidden = YES;
- _myfooterView2.agreeView.hidden = NO;
- _myfooterView2.noAgreeView.hidden = NO;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.nextAggreView.button.tag = 223;
- }else if ([stats isEqualToString:@"Checking"]){
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"催办";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer7");
- _myfooterView2.noAgreeView.nameLab.text = @"撤销";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer9");
- _myfooterView2.nextAggreView.nameLab.text = @"重新提交";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"重新加载");
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/3,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/3,0,kGXScreenWidth/3,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/3 * 2,0,kGXScreenWidth/3,75);
- _myfooterView2.disscusView.hidden = YES;
- _myfooterView2.waitView.hidden = YES;
- _myfooterView2.agreeView.hidden = NO;
- _myfooterView2.noAgreeView.hidden = NO;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.agreeView.button.tag = 230;
- _myfooterView2.noAgreeView.button.tag = 231;
- _myfooterView2.nextAggreView.button.tag = 233;
- }else{///Denied 拒绝
- [self footerVieWhenWaitApproval];
- _myfooterView2.agreeView.nameLab.text = @"下载";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer6");
- _myfooterView2.noAgreeView.hidden = YES;
- _myfooterView2.waitView.hidden = YES;
- _myfooterView2.disscusView.hidden = YES;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.agreeView.hidden = NO;
- _myfooterView2.nextAggreView.nameLab.text = @"重新提交";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer8");
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/3,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/3 * 2,0,kGXScreenWidth/3,75);
- _myfooterView2.agreeView.button.tag = 200;
- _myfooterView2.nextAggreView.button.tag = 203;
- }
- }
- - (void)loadCustomFooterFromPageTypeC{
- [self footerVieWhenWaitApproval];
- }
- - (void)footerVieWhenWaitApproval{
- _mytableView.frame = CGRectMake(0,kNavigationHeight,kGXScreenWidth, kGXScreenHeigh - kNavigationHeight-75) ;
- self.myfooterView2.frame = CGRectMake(0,kGXScreenHeigh - 75, kGXScreenWidth, 75);
- [self.view addSubview:self.myfooterView2];
-
- }
- - (void)footButtonHander:(UIButton *)sender{
-
- }
- #pragma mark - 导航栏事件处理
- -(void)back{
- if (self.navigationController.viewControllers.count > 1) {
- [self.navigationController popViewControllerAnimated:YES];
- }else{
- [self dismissViewControllerAnimated:YES completion:nil];
- }
- }
- #pragma mark - UITableViewDelegate,UITableViewDataSource
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
- return 4;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
- if (section == 0) {
- return 1;
- }
- if (section == 1) {
- return self.currentModel.FlowAttachments.count > 0 ? self.currentModel.FormFields.count + 1 : self.currentModel.FormFields.count;
- }
- if (section == 2) {
- return 1 + self.currentModel.Nodes.count;
- }
- if (section == 3) {
- return 1;
- }
- return 1;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
- switch (indexPath.section) {
- case 0:
- return 180;
- break;
- case 1:{
- if (indexPath.row == self.currentModel.FormFields.count) {
- return self.currentModel.FlowAttachments.count > 0 ? 140 : 0.01f;
- }
- FormFieldsModel * formFieldsModel = self.currentModel.FormFields[indexPath.row];
- if ([formFieldsModel.Type isEqualToString:@"Number"] || [formFieldsModel.Type isEqualToString:@"Currency"] || [formFieldsModel.Type isEqualToString:@"DateTime"] || [formFieldsModel.Type isEqualToString:@"Radio"])//单行文本
- {
- if (self.currentModel.FlowAttachments.count == 0 && indexPath.row == self.currentModel.FormFields.count - 1) {
- return 50.f;
- }
- return 40;
- }
- else if ([formFieldsModel.Type isEqualToString:@"Text"])//单行文本
- {
- UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH - 112.5, 10)];
- label.numberOfLines = 0;
- label.text = formFieldsModel.Value;
- CGSize maxSize = CGSizeMake(label.frame.size.width, CGFLOAT_MAX);
- CGSize newSize = [label sizeThatFits:maxSize];
- if (self.currentModel.FlowAttachments.count == 0 && indexPath.row == self.currentModel.FormFields.count - 1) {
- return newSize.height + 30;
- }
- return newSize.height + 20;
- }
- else if ([formFieldsModel.Type isEqualToString:@"TextArea"])//多行文本
- {
- return formFieldsModel.getCellHeight;
- }
- else if ([formFieldsModel.Type isEqualToString:@"Picture"])//图片
- {
- return 120;
- }
- return 0.01;
- }break;
- case 2:
- {
- if (indexPath.row == 0) {
- return 40;
- }else{
- NodesModel * model = self.currentModel.Nodes[indexPath.row - 1];
- UILabel * label = [UILabel new];
- label.numberOfLines = 0;
- label.text = [NSString stringWithFormat:@"审批意见:%@",model.Message];
- label.font = [UIFont systemFontOfSize:12];
- CGSize size = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH - 85, 15)];
- if (model.Message.length > 0) {
- return 70 + (size.height > 15 ? size.height : 15);
- }else{
- return 70;
- }
- }
- }break;
- default:
- {
- NSString * title = [NSString stringWithFormat:@"抄送人:%@",self.currentModel.CarbonCopies.length > 0 ? self.currentModel.CarbonCopies : @"无"];
- UILabel * label = [UILabel new];
- label.numberOfLines = 0;
- label.text = title;
- label.font = [UIFont systemFontOfSize:16];
- CGFloat H = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH - 30, 10)].height;
- return H + 10;
- }
- break;
- }
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
- WS(weakSelf);
- if (indexPath.section == 0) {
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:1];
- [cell loadDetailData: self.currentModel];
- return cell;
- }else if (indexPath.section == 1) {
- if (indexPath.row == self.currentModel.FormFields.count) {
- MyApprovalFileCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyApprovalFileCell"];
- [cell loadFile:@"附件" forWithImageArray:self.currentModel.FlowAttachments];
- cell.ClickCellModelBlock = ^(FlowAttachmentsModel * model) {
- [weakSelf pushFileOpenWithModel:model];
- };
- return cell;
- }
- FormFieldsModel * formFieldsModel = self.currentModel.FormFields[indexPath.row];
- if ([formFieldsModel.Type isEqualToString:@"Radio"] || [formFieldsModel.Type isEqualToString:@"Number"] || [formFieldsModel.Type isEqualToString:@"Currency"] || [formFieldsModel.Type isEqualToString:@"DateTime"] )//单行文本
- {
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:6];
- [cell loadTextCellKey:formFieldsModel.Label withValue:formFieldsModel.Value];
- return cell;
- }
- else if ([formFieldsModel.Type isEqualToString:@"Text"] )//多行文本
- {
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:6];
- [cell loadTextCellKey:formFieldsModel.Label withValue:formFieldsModel.Value];
- return cell;
- }
- else if ([formFieldsModel.Type isEqualToString:@"TextArea"] )//多行文本
- {
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:9];
- [cell loadMutbleTextCellKey:formFieldsModel.Label withValue:formFieldsModel.Value];
- return cell;
- }else{
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:6];
- cell.contentView.hidden = YES;
- // [cell loadTextCellKey:@"提交时间" withValue:self.currentModel.CreatedDate];
- return cell;
- }
- }else if (indexPath.section == 2) {
- if (indexPath.row == 0){
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:8];
- cell.nameLabel8.text = @"审批流程";
- return cell;
- }else{
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:7];
- if (self.currentModel.Nodes.count > 0) {
- [cell loadApprovalData:self.currentModel.Nodes[indexPath.row - 1]];
- if (indexPath.row == 1) {
- cell.topLineView.hidden = YES;
- }
- if (indexPath.row == self.currentModel.Nodes.count) {
- cell.bottomLineView.hidden = YES;
- }
- }
- return cell;
- }
- }else{
- MyApprovalDetailCell *cell = [MyApprovalDetailCell cellWithTableView:tableView AndIndex:8];
- cell.nameLabel8.numberOfLines = 0;
- cell.nameLabel8.text = [NSString stringWithFormat:@"抄送人:%@",self.currentModel.CarbonCopies.length > 0 ? self.currentModel.CarbonCopies : @"无"];
- return cell;
- }
- return nil;
- }
- - (void)pushFileOpenWithModel:(FlowAttachmentsModel *)model
- {
- WS(weakSelf);
- if (model.SoureId == 0) {
- model.SoureId = model.Id;
- }
- switch (model.SoureTypeId) {
- case CollectModel_Aritle:
- {
- SHOWLOADING
- [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)model.SoureId] parameters:@{} success:^(id _Nonnull responseObject) {
- REMOVESHOW;
- Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
- // HomeDetailController *homeDetail = [[HomeDetailController alloc] init];
- // [homeDetail loadCurrentModel:itemModel];
- // [weakSelf.navigationController pushViewController:homeDetail animated:YES];
- MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
- vc.type = CollectModel_Aritle;
- vc.Id = itemModel.Id;
- [weakSelf.navigationController pushViewController:vc animated:YES];
- } failure:^(NSError * _Nonnull error) {
- SHOWERROR([ZYCTool handerResultData:error]);
- }];
- }
- break;
- case CollectModel_Toipc:
- {
- MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
- vc.type = CollectModel_Toipc;
- vc.Id = model.SoureId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_NewTopic:
- {
- MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
- vc.type = CollectModel_NewTopic;
- vc.Id = model.SoureId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_Collect:
- {
- }
- break;
- case CollectModel_NoteBook:
- {
- MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
- vc.type = CollectModel_NoteBook;
- vc.Id = model.SoureId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_Notice:
- {
- MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
- vc.type = CollectModel_Notice;
- vc.Id = model.SoureId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_InterMail:
- {
- MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
- vc.type = CollectModel_InterMail;
- vc.Id = model.SoureId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_Group:
- {
- TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
- vc.GroupId = model.SoureId;
- vc.titleStr = model.Title;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_meetMian:
- {
- MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
- vc.type = CollectModel_meetMian;
- vc.Id = model.SoureId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_meetDetail:
- {
- WorkFlowDetailsController * vc = [[WorkFlowDetailsController alloc] initWithId:model.SoureId];
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- case CollectModel_work:
- {
- MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
- vc.pageType = Type_ONEC;
- vc.indexId = model.SoureId;
- vc.title = model.Title;
- vc.TodoId = model.SoureId;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- default:
- {
- DownFileViewController *vc = [[DownFileViewController alloc]init];
- vc.model = model;
- [self.navigationController pushViewController:vc animated:YES];
- }
- break;
- }
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
- if (indexPath.section == 1){
- FormFieldsModel * formFieldsModel = self.currentModel.FormFields[indexPath.row];
- if ([formFieldsModel.Type isEqualToString:@"Attachment"])//附件
- {
- NSLog(@"%@",formFieldsModel.paraImage);
- }
- }
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
- return section == 2 ? 1 : 20;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
- return 0.01f;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
- UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, 1)];
- view.backgroundColor = [UIColor clearColor];
- return view;
- }
- - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
- UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, section == 2 ? 1 :20)];
- view.backgroundColor = [UIColor clearColor];
- return view;
- }
- - (void)rightButtonAction:(TDButton *)sender{
- [self.noteBookShareVC initNoteBookShareData];
- self.noteBookShareVC.isWork = YES;
- self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
- }
- - (NoteBookShareVC *)noteBookShareVC{
- if (_noteBookShareVC == nil) {
- _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
- [_noteBookShareVC.view setFrame:CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- [_noteBookShareVC.view setHidden:YES];
- _noteBookShareVC.delegate = self;
- }
- return _noteBookShareVC;
- }
- #pragma mark - 分享
- -(void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath{
- self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
- if ([typeName isEqualToString:@"发给微信好友"]) {
- [self shareWebPageToPlatformType:UMSocialPlatformType_WechatSession title:self.title desc:@"微信" url:@"https://www.baidu.com/"];
- }else if ([typeName isEqualToString:@"发到朋友圈"]){
- [self shareWebPageToPlatformType:UMSocialPlatformType_WechatTimeLine title:self.title desc:@"微信" url:@"https://www.baidu.com/"];
- }else if ([typeName isEqualToString:@"发到微博"]){
- [self shareWebPageToPlatformType:UMSocialPlatformType_Sina title:self.title desc:@"微信" url:@"https://www.baidu.com/"];
- }else if ([typeName isEqualToString:@"发给QQ好友"]){
- [self shareWebPageToPlatformType:UMSocialPlatformType_QQ title:self.title desc:@"微信" url:@"https://www.baidu.com/"];
- }else if ([typeName isEqualToString:@"发到消息"]){
- [self returnToMessage];
- }else if ([typeName isEqualToString:@"发到小组"]){
- [self returnToGroup];
- }else if ([typeName isEqualToString:@"发到笔记"]){
- [self returnToNote];
- }else if ([typeName isEqualToString:@"发到话题"]){
- [self returnToTopic];
- }else{
-
- }
- }
- //UMSocialPlatformType_Sina = 0, //新浪
- //UMSocialPlatformType_WechatSession = 1, //微信聊天
- //UMSocialPlatformType_WechatTimeLine = 2,//微信朋友圈
- //UMSocialPlatformType_WechatFavorite = 3,//微信收藏
- //UMSocialPlatformType_QQ = 4,//QQ聊天页面
- - (void)shareWebPageToPlatformType:(UMSocialPlatformType)platformType title:(NSString *)title desc:(NSString *)desc url:(NSString *)url
- {
- //创建分享消息对象
- UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];
- messageObject.title = title;
- //创建网页内容对象
- UMShareWebpageObject *shareObject = [UMShareWebpageObject shareObjectWithTitle:title descr:desc thumImage:[UIImage imageNamed:@"my_about_appicon"]];
- //设置网页地址
- shareObject.webpageUrl = url;
- //分享消息对象设置分享内容对象
- messageObject.shareObject = shareObject;
- //调用分享接口
- [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {
- if (error) {
- NSLog(@"************Share fail with error %@*********",error);
- }else{
- NSLog(@"response data is %@",data);
- }
- }];
- }
- - (void)returnToMessage
- {
- ShareListVC * vc = [ShareListVC initShareListVC];
- FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
- model.SoureId = self.indexId;
- model.SoureTypeId = CollectModel_work;
- model.Title = self.title;
- model.Author = self.currentModel.UserName;
- vc.sendModel = model;
- vc.isReturn = YES;
- [self.navigationController pushViewController:vc animated:YES];
- }
- - (void)returnToGroup
- {
- MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
- vc.type = CollectModel_Group;
- FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
- model.SoureId = self.indexId;
- model.SoureTypeId = CollectModel_work;
- model.Title = self.title;
- model.Author = self.currentModel.UserName;
- vc.sendModel = model;
- vc.isReturn = YES;
- [self.navigationController pushViewController:vc animated:YES];
- }
- - (void)returnToNote
- {
- MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
- vc.type = CollectModel_NoteBook;
- FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
- model.SoureId = self.indexId;
- model.SoureTypeId = CollectModel_work;
- model.Title = self.title;
- model.Author = self.currentModel.UserName;
- vc.sendModel = model;
- vc.isReturn = YES;
- [self.navigationController pushViewController:vc animated:YES];
- }
- - (void)returnToTopic
- {
- MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
- vc.type = CollectModel_NewTopic;
- FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
- model.SoureId = self.indexId;
- model.SoureTypeId = CollectModel_work;
- model.Title = self.title;
- model.Author = self.currentModel.UserName;
- vc.sendModel = model;
- vc.isReturn = YES;
- [self.navigationController pushViewController:vc animated:YES];
- }
- #pragma mark - setter
- - (TDTableView *)mytableView{
- if (!_mytableView) {
- _mytableView = [[TDTableView alloc]init];
- _mytableView.frame = CGRectMake(0,kNavigationHeight,kGXScreenWidth, kGXScreenHeigh - kNavigationHeight - kiphoneXBootomHeight);
- _mytableView.delegate = self;
- _mytableView.dataSource = self;
- _mytableView.sectionHeaderHeight = 0;
- // [_mytableView registerNib:[UINib nibWithNibName:@"MyApprovalBCell" bundle:nil] forCellReuseIdentifier:@"MyApprovalBCell"];
- [_mytableView registerNib:[UINib nibWithNibName:@"MyApprovalFileCell" bundle:nil] forCellReuseIdentifier:@"MyApprovalFileCell"];
- }
- return _mytableView;
- }
- - (MyWorkFlowFooterView *)myfooterView2{
- if (!_myfooterView2) {
- _myfooterView2 = [[MyWorkFlowFooterView alloc]initWithFrame:CGRectMake(0,kGXScreenHeigh - 75, kGXScreenWidth, 75)];
- _myfooterView2.agreeView.nameLab.text = @"同意";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer1");
- _myfooterView2.noAgreeView.nameLab.text = @"驳回";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer");
- _myfooterView2.disscusView.nameLab.text = @"上会";
- _myfooterView2.disscusView.imageVIew.image = IMG(@"work_footer2");
- _myfooterView2.nextAggreView.nameLab.text = @"转审";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
- _myfooterView2.delegate = self;
- }
- return _myfooterView2;
- }
- - (TDNavigationBar *)myNavigationBar{
- if (!_myNavigationBar) {
- _myNavigationBar = [[TDNavigationBar alloc]initNavigationBar];
- _myNavigationBar.delegate = self;
- _myNavigationBar.backButton2.hidden = NO;
- _myNavigationBar.titleLabel.textColor = UIColorHex(#FFFFFF);
- _myNavigationBar.titleLabel.font = [UIFont systemFontOfSize:19.f];
- [_myNavigationBar.backButton2 setImage:IMG(@"快捷跳转") forState:UIControlStateNormal];
- [_myNavigationBar.backButton setImage:IMG(@"工作_返回") forState:UIControlStateNormal];
- _myNavigationBar.rightButton.hidden = NO;
- [_myNavigationBar.rightButton setImage:IMG(@"shareWhile") forState:UIControlStateNormal];
- }
- return _myNavigationBar;
- }
- - (UIView *)myBackImageView{
- if (!_myBackImageView) {
- _myBackImageView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, kGXScreenHeigh, kNavigationHeight)];
- _myBackImageView.backgroundColor = [UIColor colorWithRed:92/255.0 green:118.0/255.0 blue:167.0/255.f alpha:1.0];
- }
- return _myBackImageView;
- }
- - (void)backButtonAction {
- [self back];
- }
- - (void)backButtonAction2:(UIButton *)sender {
- [self secondBarButtonItems];
- }
- - (void)secondBarButtonItems{
- [self.view endEditing:YES];
- [[UtilsTools getWindow] addSubview:self.drawerView];
- WS(weakSelf);
- self.drawerView.SelectDrawerBlock = ^(NSIndexPath * _Nonnull indexPath) {
- if (![weakSelf.tabBarController isKindOfClass:[TabBarController class]]) {
- [TabBarController sharedTabBarController].tabBar.hidden = NO;
- [weakSelf.tabBarController.navigationController popViewControllerAnimated:NO];
- }
- if ([weakSelf.navigationController.viewControllers count] > 1) {
- [weakSelf.navigationController popToRootViewControllerAnimated:NO];
- }
- switch (indexPath.section) {
- case 0:
- {
- [[TabBarController sharedTabBarController] setSelectedIndex:indexPath.row];
- }
- break;
- case 1:
- {
- switch (indexPath.row) {
- case 0:
- {
- [[TabBarController sharedTabBarController] setSelectedIndex:2];
- }
- break;
- case 1:
- {
- [[TabBarController sharedTabBarController] setSelectedIndex:2];
- }
- break;
- default:
- {
- [[TabBarController sharedTabBarController] setSelectedIndex:3];
- }
- break;
- }
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(indexPath.row)}];
- });
- }
- break;
- default:
- {
- [[TabBarController sharedTabBarController] setSelectedIndex:3];
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:DRAWERPUSHVC object:nil userInfo:@{VCINDEX:@(4 + indexPath.row)}];
- });
- }
- break;
- }
- };
- self.drawerView.frame = CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT);// - kNavigationHeight
- }
- - (MyApprovalDetailModel *)currentModel{
- if (!_currentModel) {
- _currentModel = [[MyApprovalDetailModel alloc] init];
- }
- return _currentModel;
- }
- #pragma mark - 审批操作事件处理
- - (void)didMyWorkFlowFooterViewBack:(NSInteger)index {
- if (index == 130){ //同意
- [self aggreeApprovalHander:@"审批意见"];
- }
- if (index == 131 ){ //驳回
- [self refuseApproval];
- }
- if (index == 132){// 上会
- [self goDisscuss];
- }
- if (index == 133 || index == 123){// 转审
- [self goNextApproval:@"转审"];
- }
- if (index == 120){//会议结论
- [self goDisscusText];
- }
- if (index == 121){// 撤销上会
- [self deleteDiscussText];
- }
- if (index == 200 || index == 210){//下载
-
- [self dowonLoadAddFile];
- }
-
- if (index == 203|| index == 223 || index == 233){//重新提交
- [self secondCommit];
-
- }
- if (index == 220 || index == 230){//催办
- [self goWorkWork];
-
- }
- if (index == 221 ||index == 231){//撤销
- [self deleteApproval];
- }
- if (index == 124){//待定
- [self waitDisscuss];
- }
- }
- ///同意
- - (void)aggreeApprovalHander:(NSString *)titleName{
- AgreeApprovalViewControllerSub * agreeApprovalViewControllerSub = [[AgreeApprovalViewControllerSub alloc] init];
- agreeApprovalViewControllerSub.title = titleName;
- agreeApprovalViewControllerSub.TodoId = self.TodoId;
- agreeApprovalViewControllerSub.FlowId = self.indexId;
- agreeApprovalViewControllerSub.IsChecked = YES;
- [agreeApprovalViewControllerSub setActionSussBlock:self.ActionSussBlock];
- [self.navigationController pushViewController:agreeApprovalViewControllerSub animated:YES];
- }
- ///驳回
- - (void)refuseApproval{
- AgreeApprovalViewControllerSub * agreeApprovalViewControllerSub = [[AgreeApprovalViewControllerSub alloc] init];
- agreeApprovalViewControllerSub.title = @"审批意见";
- agreeApprovalViewControllerSub.TodoId = self.TodoId;
- agreeApprovalViewControllerSub.FlowId = self.indexId;
- agreeApprovalViewControllerSub.IsChecked = NO;
- [agreeApprovalViewControllerSub setActionSussBlock:self.ActionSussBlock];
- [self.navigationController pushViewController:agreeApprovalViewControllerSub animated:YES];
- }
- ///上会
- - (void)goDisscuss{
- SHOWLOADING
- WEAKSELF
- [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,WorkFlowApprovalMetting_Post] parameters:@{@"FlowId":@(self.indexId)} responseStyle:DATA success:^(id _Nonnull responseObject) {
- if (weakSelf.ActionSussBlock) {
- weakSelf.ActionSussBlock();
- }
- REMOVESHOW
- SHOWERROR2(@"已提交上会申请");
- [weakSelf.navigationController popViewControllerAnimated:YES];
- } failure:^(NSError * _Nonnull error) {
- SHOWERROR([ZYCTool handerResultData:error]);
- }];
- }
- ///待定
- - (void)waitDisscuss{
- SHOWLOADING
- WEAKSELF
- [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,@"/api/app/flow/action/wait"] parameters:@{@"FlowId":@(self.indexId)} responseStyle:DATA success:^(id _Nonnull responseObject) {
- REMOVESHOW
- if (weakSelf.ActionSussBlock) {
- weakSelf.ActionSussBlock();
- }
- [weakSelf.navigationController popViewControllerAnimated:YES];
- } failure:^(NSError * _Nonnull error) {
- SHOWERROR([ZYCTool handerResultData:error]);
- }];
- }
- /// 催办成功页面处理
- -(void)goDisscussSuccess{
- _myfooterView2.agreeView.nameLab.text = @"会议结论";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer5");
- _myfooterView2.noAgreeView.nameLab.text = @"撤销上会";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer");
- _myfooterView2.nextAggreView.nameLab.text = @"转审";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
-
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/3,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/3,0,kGXScreenWidth/3,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/3 + kGXScreenWidth/3,0,kGXScreenWidth/3,75);
- _myfooterView2.disscusView.hidden = YES;
-
- _myfooterView2.agreeView.button.tag = 120;
- _myfooterView2.noAgreeView.button.tag = 121;
- _myfooterView2.disscusView.button.tag = 122;
- _myfooterView2.nextAggreView.button.tag = 123;
- }
- ///转审
- - (void)goNextApproval:(NSString *)titleName{
- NextApprovalViewController * nextApprovalViewController = [[NextApprovalViewController alloc]init];
- nextApprovalViewController.title = @"审批";
- nextApprovalViewController.userIds = @[@(self.userId),@([AppUserModel sharedAppUserModel].Id)];
- nextApprovalViewController.TodoId = self.TodoId;
- [nextApprovalViewController setActionSussBlock:self.ActionSussBlock];
- [self.navigationController pushViewController:nextApprovalViewController animated:YES];
- }
- ///会议结论
- - (void)goDisscusText{
- [self aggreeApprovalHander:@"审批意见"];
- }
- ///撤销上会
- - (void)deleteDiscussText{
- SHOWLOADING
- WEAKSELF
- [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,WorkFlowApprovalCancelMetting_Post] parameters:@{@"FlowId":@(self.indexId)} responseStyle:DATA success:^(id _Nonnull responseObject) {
- // NSData *strData = responseObject;
- // NSString *nameStr = [[NSString alloc]initWithData:strData encoding:NSUTF8StringEncoding];
- // NSLog(@"解析数据 ====%@",nameStr);
- SHOWERROR2(@"撤销上会");
- if (self.ActionSussBlock) {
- self.ActionSussBlock();
- }
- REMOVESHOW
- [weakSelf updateDisscussUI];
- } failure:^(NSError * _Nonnull error) {
- SHOWERROR([ZYCTool handerResultData:error]);
- }];
- }
- - (void)updateDisscussUI{
- _myfooterView2.agreeView.button.tag = 130;
- _myfooterView2.noAgreeView.button.tag = 131;
- _myfooterView2.disscusView.button.tag = 132;
- _myfooterView2.nextAggreView.button.tag = 133;
- _myfooterView2.agreeView.nameLab.text = @"同意";
- _myfooterView2.agreeView.imageVIew.image = IMG(@"work_footer1");
- _myfooterView2.noAgreeView.nameLab.text = @"驳回";
- _myfooterView2.noAgreeView.imageVIew.image = IMG(@"work_footer");
- _myfooterView2.disscusView.nameLab.text = @"上会";
- _myfooterView2.disscusView.imageVIew.image = IMG(@"work_footer2");
- _myfooterView2.nextAggreView.nameLab.text = @"转审";
- _myfooterView2.nextAggreView.imageVIew.image = IMG(@"work_footer3");
-
- _myfooterView2.agreeView.frame = CGRectMake(0,0,kGXScreenWidth/4,75);
- _myfooterView2.noAgreeView.frame = CGRectMake(kGXScreenWidth/4,0,kGXScreenWidth/4,75);
- _myfooterView2.disscusView.frame = CGRectMake(kGXScreenWidth/2,0,kGXScreenWidth/4,75);
- _myfooterView2.nextAggreView.frame = CGRectMake(kGXScreenWidth/4 +kGXScreenWidth/4 + kGXScreenWidth/4,0,kGXScreenWidth/4,75);
- _myfooterView2.agreeView.hidden = NO;
- _myfooterView2.noAgreeView.hidden = NO;
- _myfooterView2.disscusView.hidden = NO;
- _myfooterView2.nextAggreView.hidden = NO;
- _myfooterView2.waitView.hidden = YES;
- }
- ///下载
- - (void)dowonLoadAddFile{
-
- SHOWLOADING
-
- WEAKSELF
- // NSString *homePath = NSHomeDirectory();
- // //document目录
- // NSString *documentPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject;
- // //library目录
- // NSString *libraryPath = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES).firstObject;
- // //caches目录
- // NSString *cachesPath = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).firstObject;
- // //application support目录
- // NSString *applicationSupportPath = NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES).firstObject;
- // //preference目录
- // NSString *preferencePath = NSSearchPathForDirectoriesInDomains(NSPreferencePanesDirectory, NSUserDomainMask, YES).firstObject;
- //tem目录
- NSString *temPath = NSTemporaryDirectory();
- [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,WorkFlowApprovalDownLoad_Post] parameters:@{@"FlowId":@(self.indexId)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
-
- STRONGSELF
- NSLog(@"已下载 ====%@",responseObject);
- REMOVESHOW
- FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
- model.Url = responseObject[@"DownloadUrl"];
- model.MinUrl = responseObject[@"PreviewUrl"];
- model.SoureTypeId = CollectModel_file;
- model.SoureId = weakSelf.indexId;
- model.Id = weakSelf.indexId;
- model.Title = [NSString stringWithFormat:@"%@.doc",weakSelf.title];
- [strongSelf downSucces:model];
- [[HttpManager sharedHttpManager] downloadUrl:model.Url downloadFilePath:temPath success:^(id _Nonnull responseObject) {
-
- } failure:^(NSError * _Nonnull error) {
-
- }];
- } failure:^(NSError * _Nonnull error) {
- SHOWERROR([ZYCTool handerResultData:error]);
-
- }];
- }
- - (void)downSucces:(FlowAttachmentsModel *)model{
- DownFileViewController *downFileViewController = [[DownFileViewController alloc]init];
- downFileViewController.model = model;
- [self.navigationController pushViewController:downFileViewController animated:YES];
- }
- ///重新提交
- - (void)secondCommit{
- WS(weakSelf);
- UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"重新提交后,当前审批单将自动撤销,确定继续?" preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *actionYes = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- //需要先把数据传递到编辑界面
- MyWorkWordVC *myWorkWordVC = [[MyWorkWordVC alloc] init];
- myWorkWordVC.pageType = Type_GongWen;
- myWorkWordVC.detailsModel = weakSelf.currentModel;
- myWorkWordVC.Id = weakSelf.indexId;
- myWorkWordVC.title = weakSelf.currentModel.Name;
- myWorkWordVC.indexID = weakSelf.currentModel.ProcessId;
- [weakSelf.navigationController pushViewController:myWorkWordVC animated:YES];
- }];
- UIAlertAction *actionNo = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
-
- }];
- [alert addAction:actionYes];
- [alert addAction:actionNo];
- [self presentViewController:alert animated:YES completion:^{
- }];
- }
- ///催办
- - (void)goWorkWork{
- [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,WorkFlowApprovalComeon_Post] parameters:@{@"FlowId":@(self.indexId)} responseStyle:DATA success:^(id _Nonnull responseObject) {
- NSData *strData = responseObject;
- NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:strData options:NSJSONReadingMutableLeaves error:nil];
- if ([jsonDict[@"Value"] boolValue]) {
- SHOWWAIT(@"已提醒对方查看,请耐心等待")
- }else{
- SHOWSUCCESS(@"已催办")
- }
- // if (self.ActionSussBlock) {
- // self.ActionSussBlock();
- // }
- } failure:^(NSError * _Nonnull error) {
- SHOWERROR([ZYCTool handerResultData:error]);
- }];
- }
- ///撤销
- - (void)deleteApproval{
- WS(weakSelf);
- UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"确定继续撤销申请?" preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *actionYes = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
- [[HttpManager sharedHttpManager] DeleteUrl:[NSString stringWithFormat:@"%@%@/%ld",BaseUrl,WorkFlowAddApproval_Post,(long)self.indexId] parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
-
- if (self.ActionSussBlock) {
- self.ActionSussBlock();
- }
- [self.navigationController popViewControllerAnimated:YES];
- SHOWSUCCESS(@"撤销成功")
- } failure:^(NSError * _Nonnull error) {
- SHOWSUCCESS(@"撤销失败,稍候再试")
- }];
- [weakSelf.navigationController popViewControllerAnimated:YES];
- }];
- UIAlertAction *actionNo = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
-
- }];
- [alert addAction:actionYes];
- [alert addAction:actionNo];
- [self presentViewController:alert animated:YES completion:^{
-
- }];
- }
- - (void)getData{
- SHOWLOADING
- WS(weakSelf);
- NSLog(@"%@",[NSString stringWithFormat:@"%@%@/%ld",BaseUrl,WorkFlowAddApproval_Post,(long)self.indexId]);
- [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@/%ld",BaseUrl,WorkFlowAddApproval_Post,(long)self.indexId] parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
- if (self.ActionSussBlock) {
- self.ActionSussBlock();
- }
- NSLog(@"%@",responseObject);
- NSDictionary *dic = responseObject;
- weakSelf.currentModel = [[MyApprovalDetailModel alloc] initWithDictionary:dic error:nil];
- NSMutableArray<NodesModel *> *tmpNodes = [weakSelf.currentModel.Nodes mutableCopy];
- // [tmpNodes enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
- // NodesModel *nodeModel = obj;
- // if ([nodeModel.Action isEqualToString:@"同意"]) {
- // [tmpNodes exchangeObjectAtIndex:idx withObjectAtIndex:1];
- // }
- // }];
- weakSelf.currentModel.Nodes = [tmpNodes mutableCopy];
- //获取第一个审核中的位置
- // [weakSelf.currentModel.Nodes enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
- // NodesModel *nodeModel = obj;
- // if ([nodeModel.Action isEqualToString:@"审批中"]) {
- // weakSelf.fristStatusIndex = idx;
- // }
- // }];
- dispatch_async(dispatch_get_main_queue(), ^{
- switch (weakSelf.pageType) {
- case Type_ONEA:
- {
- [weakSelf loadCustomFooterFromStatus:weakSelf.currentModel.State];
- }
- break;
- case Type_ONEB:
- {
- [weakSelf loadCustomFooterFromStatus:weakSelf.currentModel.FlowState];
- }
- break;
- case Type_ONEC:
- // [self loadCustomFooterFromPageTypeC];
- break;
- }
- });
- for (NSInteger x = 0; x < weakSelf.currentModel.FormFields.count; x++) {
- FormFieldsModel *model = weakSelf.currentModel.FormFields[x];
- if ([model.Type isEqualToString:@"所在部门"]) {
- model.Value = weakSelf.currentModel.DepartmentName;
- }
- }
- [weakSelf.mytableView reloadData];
- REMOVESHOW
- } failure:^(NSError * _Nonnull error) {
- SHOWERROR([ZYCTool handerResultData:error])
- }];
- }
- - (DrawerView *)drawerView {
- if(!_drawerView) {
- _drawerView = [[DrawerView alloc] init];
- }
- return _drawerView;
- }
- - (void)viewWillDisappear:(BOOL)animated
- {
- if (self.ActionSussBlock) {
- self.ActionSussBlock();
- }
- }
- @end
-
|