WorkFlowDetailsController.m 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. //
  2. // WorkFlowDetailsController.m
  3. // smartRhino
  4. //
  5. // Created by Android on 2019/12/18.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "WorkFlowDetailsController.h"
  9. #import "HistoricalWorkFlowDetailsBaseCell.h"
  10. #import "WorkFlowPersonnelListController.h"
  11. #import "HistoricalWorkFlowDetailsTitleCell.h"
  12. #import "HistoricalWorkFlowDetailsContentCell.h"
  13. #import "MeetingDetailsTimeCell.h"
  14. #import "MyWorkFlowListCell.h"
  15. #import "NoteBookShareVC.h"
  16. #import "MyTDGroupViewController.h"
  17. #import "MyTDTopicCreateVC.h"
  18. #import "MoveViewController.h"
  19. #import "DownFileViewController.h"
  20. #import "HomeDetailController.h"
  21. #import "ChatMsgNoticeDetailVC.h"
  22. #import "MyTDTopicDetailVC.h"
  23. #import "TDInterLeterDetailVC.h"
  24. #import "NoteBookDetailVC.h"
  25. #import "TDGroupInfoListVC.h"
  26. #import "HistoricalWorkFlowDetailsMoreCell.h"
  27. #import "WorkFlowOrderController.h"
  28. #import "WorkFlowFecordController.h"
  29. #import "MyApprovalPageDetail.h"
  30. #import "ShareListVC.h"
  31. @interface WorkFlowDetailsController ()<UITableViewDelegate,UITableViewDataSource,NoteBookShareVCDelegate>
  32. @property (weak, nonatomic) IBOutlet UITableView *detailsTabView;
  33. @property (weak, nonatomic) IBOutlet UIView *bottomView;
  34. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConstant;
  35. @property (strong, nonatomic) MyMeetingListModel * meetingModel;
  36. @property (strong, nonatomic) NoteBookShareVC * noteBookShareVC;
  37. @end
  38. @implementation WorkFlowDetailsController
  39. - (instancetype)initWithId:(NSInteger)meetingId {
  40. if (self = [super init]) {
  41. self.meetingId = meetingId;
  42. }
  43. return self;
  44. }
  45. - (IBAction)returnAction:(id)sender {
  46. [self shareHander];
  47. }
  48. - (void)shareHander{
  49. [self.noteBookShareVC initNoteBookShareData];
  50. self.noteBookShareVC.isWork = YES;
  51. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  52. }
  53. - (NoteBookShareVC *)noteBookShareVC{
  54. if (_noteBookShareVC == nil) {
  55. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  56. [_noteBookShareVC.view setFrame:CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  57. [_noteBookShareVC.view setHidden:YES];
  58. _noteBookShareVC.delegate = self;
  59. }
  60. return _noteBookShareVC;
  61. }
  62. -(void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath{
  63. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  64. if ([typeName isEqualToString:@"发给微信好友"]) {
  65. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  66. }else if ([typeName isEqualToString:@"发到微博"]){
  67. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  68. }else if ([typeName isEqualToString:@"发到消息"]){
  69. [self returnToMessage];
  70. }else if ([typeName isEqualToString:@"发到小组"]){
  71. [self returnToGroup];
  72. }else if ([typeName isEqualToString:@"发到笔记"]){
  73. [self returnToNote];
  74. }else if ([typeName isEqualToString:@"发到话题"]){
  75. [self returnToTopic];
  76. }else{
  77. }
  78. }
  79. - (void)returnToMessage
  80. {
  81. ShareListVC * vc = [ShareListVC initShareListVC];
  82. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  83. model.SoureTypeId = CollectModel_meetDetail;
  84. model.Title = self.meetingModel.Name;
  85. model.SoureId = [self.meetingModel.Id integerValue];
  86. model.Author = self.meetingModel.UserName;
  87. vc.sendModel = model;
  88. vc.isReturn = YES;
  89. [self.navigationController pushViewController:vc animated:YES];
  90. }
  91. - (void)returnToGroup
  92. {
  93. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  94. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  95. model.SoureTypeId = CollectModel_meetDetail;
  96. model.Title = self.meetingModel.Name;
  97. model.SoureId = [self.meetingModel.Id integerValue];
  98. model.Author = self.meetingModel.UserName;
  99. vc.type = CollectModel_Group;
  100. vc.sendModel = model;
  101. vc.isReturn = YES;
  102. [self.navigationController pushViewController:vc animated:YES];
  103. }
  104. - (void)returnToNote
  105. {
  106. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  107. vc.type = CollectModel_NoteBook;
  108. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  109. model.SoureTypeId = CollectModel_meetDetail;
  110. model.Title = self.meetingModel.Name;
  111. model.SoureId = [self.meetingModel.Id integerValue];
  112. model.Author = self.meetingModel.UserName;
  113. vc.sendModel = model;
  114. vc.isReturn = YES;
  115. [self.navigationController pushViewController:vc animated:YES];
  116. }
  117. - (void)returnToTopic
  118. {
  119. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  120. FlowAttachmentsModel * model = [[FlowAttachmentsModel alloc] init];
  121. model.SoureTypeId = CollectModel_meetDetail;
  122. model.Title = self.meetingModel.Name;
  123. model.SoureId = [self.meetingModel.Id integerValue];
  124. model.Author = self.meetingModel.UserName;
  125. vc.sendModel = model;
  126. vc.type = CollectModel_NewTopic;
  127. vc.isReturn = YES;
  128. [self.navigationController pushViewController:vc animated:YES];
  129. }
  130. - (void)viewDidLoad {
  131. [super viewDidLoad];
  132. self.fd_prefersNavigationBarHidden = YES;
  133. self.detailsTabView.dataSource = self;
  134. self.detailsTabView.delegate = self;
  135. self.detailsTabView.tableFooterView = [UIView new];
  136. self.detailsTabView.keyboardDismissMode = UIScrollViewKeyboardDismissModeOnDrag;
  137. self.detailsTabView.separatorColor = [UIColor colorWithHexString:@"F7F7F7"];
  138. [self.detailsTabView registerNib:[UINib nibWithNibName:@"HistoricalWorkFlowDetailsTitleCell" bundle:nil] forCellReuseIdentifier:@"HistoricalWorkFlowDetailsTitleCell"];
  139. [self.detailsTabView registerNib:[UINib nibWithNibName:@"HistoricalWorkFlowDetailsContentCell" bundle:nil] forCellReuseIdentifier:@"HistoricalWorkFlowDetailsContentCell"];
  140. [self.detailsTabView registerNib:[UINib nibWithNibName:@"HistoricalWorkFlowDetailsMoreCell" bundle:nil] forCellReuseIdentifier:@"HistoricalWorkFlowDetailsMoreCell"];
  141. [self.detailsTabView registerNib:[UINib nibWithNibName:@"MeetingDetailsTimeCell" bundle:nil] forCellReuseIdentifier:@"MeetingDetailsTimeCell"];
  142. if (self.meetType == MeetingEndType) {
  143. self.bottomView.alpha = 0;
  144. self.bottomView.hidden = YES;
  145. }
  146. [self getData];
  147. [[UtilsTools getWindow] addSubview:self.noteBookShareVC.view];
  148. }
  149. - (void)setBottomStatus:(BOOL)hidden
  150. {
  151. self.bottomView.hidden = hidden;
  152. if (hidden) {
  153. self.view.backgroundColor = [UIColor whiteColor];
  154. self.bottomConstant.constant = 0.f;
  155. }else{
  156. self.view.backgroundColor = [UIColor colorWithRed:234/255.0 green:234/255.0 blue:234/255.0 alpha:1];
  157. self.bottomConstant.constant = 50.f;
  158. }
  159. }
  160. - (void)getData
  161. {
  162. WS(weakSelf);
  163. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(MeetingDetail),(long)self.meetingId];
  164. [[HttpManager sharedHttpManager] GETUrl:url parameters:@{} success:^(id _Nonnull responseObject) {
  165. [weakSelf.detailsTabView.mj_header endRefreshing];
  166. [weakSelf.detailsTabView.mj_footer endRefreshing];
  167. weakSelf.meetingModel = [MyMeetingListModel modelWithDictionary:responseObject];
  168. if (weakSelf.meetingModel.Status == 0) {
  169. weakSelf.meetType = MeetingEndType;
  170. }else{
  171. weakSelf.meetType = MeetingWillOpenType;
  172. }
  173. dispatch_async(dispatch_get_main_queue(), ^{
  174. if ([weakSelf.meetingModel.UserId integerValue] == [AppUserModel sharedAppUserModel].Id) {
  175. [weakSelf setBottomStatus:NO];
  176. }else{
  177. [weakSelf setBottomStatus:YES];
  178. }
  179. [weakSelf.detailsTabView reloadData];
  180. });
  181. } failure:^(NSError * _Nonnull error) {
  182. [weakSelf.detailsTabView.mj_header endRefreshing];
  183. [weakSelf.detailsTabView.mj_footer endRefreshing];
  184. }];
  185. }
  186. #pragma mark - table delegate
  187. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
  188. {
  189. if ([cell respondsToSelector:@selector(setSeparatorInset:)])
  190. {
  191. [cell setSeparatorInset:UIEdgeInsetsZero];
  192. }
  193. if ([cell respondsToSelector:@selector(setLayoutMargins:)])
  194. {
  195. [cell setLayoutMargins:UIEdgeInsetsZero];
  196. }
  197. }
  198. - (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath {
  199. return 45.f;
  200. }
  201. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  202. if (indexPath.row == 1) {
  203. return self.meetingModel.MeetingTimes.count * 26.f + 18.f;
  204. }
  205. // if (indexPath.row == 2) {
  206. // NSString *address = [NSString stringWithFormat:@"%@ %@",self.meetingModel.Address,self.meetingModel.RoomName];
  207. // NSDictionary *txtAttribute = @{NSFontAttributeName: [UIFont systemFontOfSize:17]};
  208. // CGSize retSize = [address boundingRectWithSize:CGSizeMake(SCREEN_WIDTH - 100.f, MAXFLOAT)
  209. // options:\
  210. // NSStringDrawingTruncatesLastVisibleLine |
  211. // NSStringDrawingUsesLineFragmentOrigin |
  212. // NSStringDrawingUsesFontLeading
  213. // attributes:txtAttribute
  214. // context:nil].size;
  215. // return retSize.height + 24.f;
  216. // }
  217. if (indexPath.row == 3) {
  218. //获取实际内容
  219. NSString *content = self.meetingModel.Description;
  220. //获取字符串高度
  221. UILabel * label = [UILabel new];
  222. label.font = [UIFont systemFontOfSize:16];
  223. label.text = content;
  224. label.numberOfLines = 0;
  225. CGFloat contentHeight = [label sizeThatFits:CGSizeMake(SCREEN_WIDTH - 36, 10)].height;
  226. //图片应该展示的高度
  227. CGFloat imageHeight = self.meetingModel.ImageUrl.length > 0 ? (SCREEN_WIDTH - 30.f) * 0.5 : 0;
  228. CGFloat H = 48.f;
  229. if (self.meetingModel.ImageUrl.length > 0) {
  230. H += 15.f;
  231. }
  232. if (self.meetingModel.FlowAttachments.count > 0) {
  233. H += 15.f;
  234. }
  235. if (content.length > 0) {
  236. H += 15.f;
  237. }
  238. //添加其他高度
  239. return (contentHeight + H + imageHeight + self.meetingModel.FlowAttachments.count * 87);
  240. }
  241. return UITableViewAutomaticDimension;
  242. }
  243. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  244. if (self.meetType == MeetingEndType) {
  245. return 6;
  246. }
  247. return 5;
  248. }
  249. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  250. WS(weakSelf);
  251. switch (indexPath.row) {
  252. case 0:{
  253. HistoricalWorkFlowDetailsTitleCell * cell = (HistoricalWorkFlowDetailsTitleCell *)[tableView dequeueReusableCellWithIdentifier:@"HistoricalWorkFlowDetailsTitleCell" forIndexPath:indexPath];
  254. [cell.statusBtn setTitle:self.meetingModel.Status == 0 ? @"待开会" : @"已结束" forState:UIControlStateNormal];
  255. cell.statusBtn.hidden = self.meetType == MeetingEndType ? YES : NO;
  256. [cell setCellData:self.meetingModel withIndex:indexPath];
  257. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  258. return cell;
  259. }
  260. break;
  261. case 1:{
  262. MeetingDetailsTimeCell * cell = (MeetingDetailsTimeCell *)[tableView dequeueReusableCellWithIdentifier:@"MeetingDetailsTimeCell" forIndexPath:indexPath];
  263. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  264. [cell setCellData:self.meetingModel];
  265. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  266. return cell;
  267. }
  268. break;
  269. case 2:{
  270. HistoricalWorkFlowDetailsTitleCell * cell = [tableView dequeueReusableCellWithIdentifier:@"HistoricalWorkFlowDetailsTitleCell" forIndexPath:indexPath];
  271. [cell setCellData:self.meetingModel withIndex:indexPath];
  272. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  273. return cell;
  274. }
  275. break;
  276. case 3:{
  277. HistoricalWorkFlowDetailsContentCell * cell = (HistoricalWorkFlowDetailsContentCell *)[tableView dequeueReusableCellWithIdentifier:@"HistoricalWorkFlowDetailsContentCell" forIndexPath:indexPath];
  278. [cell setCellData:self.meetingModel withIndex:indexPath];
  279. cell.ClickAttrBlock = ^(NSDictionary * _Nonnull dict) {
  280. [weakSelf pushWithDict:dict];
  281. };
  282. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  283. return cell;
  284. }
  285. break;
  286. case 4:{
  287. HistoricalWorkFlowDetailsMoreCell * cell = (HistoricalWorkFlowDetailsMoreCell *)[tableView dequeueReusableCellWithIdentifier:@"HistoricalWorkFlowDetailsMoreCell" forIndexPath:indexPath];
  288. [cell setCellData:@"参会人员"];
  289. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  290. return cell;
  291. }
  292. break;
  293. default:{
  294. HistoricalWorkFlowDetailsMoreCell * cell = (HistoricalWorkFlowDetailsMoreCell *)[tableView dequeueReusableCellWithIdentifier:@"HistoricalWorkFlowDetailsMoreCell" forIndexPath:indexPath];
  295. [cell setCellData:@"会议纪要"];
  296. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  297. return cell;
  298. }
  299. break;
  300. }
  301. }
  302. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  303. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  304. if (indexPath.row == 4) {
  305. WorkFlowPersonnelListController *controller = [[WorkFlowPersonnelListController alloc] init];
  306. controller.Id = self.meetingModel.Id;
  307. [self.navigationController pushViewController:controller animated:YES];
  308. }
  309. if (indexPath.row == 5) {
  310. WorkFlowFecordController * vc = [[WorkFlowFecordController alloc] init];
  311. vc.meetId = [self.meetingModel.Id integerValue];
  312. vc.isBack = YES;
  313. [self.navigationController pushViewController:vc animated:YES];
  314. }
  315. }
  316. - (void)pushWithDict:(NSDictionary *)dict
  317. {
  318. WS(weakSelf);
  319. NSLog(@"%@",dict);
  320. switch ([dict[@"SoureTypeId"] integerValue]){
  321. case CollectModel_Aritle:
  322. {
  323. SHOWLOADING
  324. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)[dict[@"SoureId"] integerValue]] parameters:@{} success:^(id _Nonnull responseObject) {
  325. REMOVESHOW;
  326. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  327. // HomeDetailController *homeDetail = [[HomeDetailController alloc] init];
  328. // [homeDetail loadCurrentModel:itemModel];
  329. // [weakSelf.navigationController pushViewController:homeDetail animated:YES];
  330. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  331. vc.type = CollectModel_Aritle;
  332. vc.Id = itemModel.Id;
  333. [weakSelf.navigationController pushViewController:vc animated:YES];
  334. } failure:^(NSError * _Nonnull error) {
  335. SHOWERROR([ZYCTool handerResultData:error]);
  336. }];
  337. }
  338. break;
  339. case CollectModel_Toipc:
  340. {
  341. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  342. vc.type = CollectModel_Toipc;
  343. vc.Id = [dict[@"SoureId"] integerValue];
  344. [self.navigationController pushViewController:vc animated:YES];
  345. }
  346. break;
  347. case CollectModel_NewTopic:
  348. {
  349. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  350. vc.type = CollectModel_NewTopic;
  351. vc.Id = [dict[@"SoureId"] integerValue];
  352. [self.navigationController pushViewController:vc animated:YES];
  353. }
  354. break;
  355. case CollectModel_Collect:
  356. {
  357. }
  358. break;
  359. case CollectModel_NoteBook:
  360. {
  361. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  362. vc.type = CollectModel_NoteBook;
  363. vc.Id = [dict[@"SoureId"] integerValue];
  364. [self.navigationController pushViewController:vc animated:YES];
  365. }
  366. break;
  367. case CollectModel_Notice:
  368. {
  369. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  370. vc.type = CollectModel_Notice;
  371. vc.Id = [dict[@"SoureId"] integerValue];
  372. [self.navigationController pushViewController:vc animated:YES];
  373. }
  374. break;
  375. case CollectModel_InterMail:
  376. {
  377. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  378. vc.type = CollectModel_InterMail;
  379. vc.Id = [dict[@"SoureId"] integerValue];
  380. [self.navigationController pushViewController:vc animated:YES];
  381. }
  382. break;
  383. case CollectModel_Group:
  384. {
  385. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  386. vc.GroupId = [dict[@"SoureId"] integerValue];
  387. vc.titleStr = dict[@"Title"];
  388. [self.navigationController pushViewController:vc animated:YES];
  389. }
  390. break;
  391. case CollectModel_meetMian:
  392. {
  393. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  394. vc.type = CollectModel_meetMian;
  395. vc.Id = [dict[@"SoureId"] integerValue];
  396. [self.navigationController pushViewController:vc animated:YES];
  397. }
  398. break;
  399. case CollectModel_work:{
  400. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  401. vc.pageType = Type_ONEC;
  402. vc.indexId = [dict[@"SoureId"] integerValue];
  403. vc.title = dict[@"Title"];
  404. vc.TodoId = [dict[@"SoureId"] integerValue];
  405. [self.navigationController pushViewController:vc animated:YES];
  406. }break;
  407. default:
  408. {
  409. FlowAttachmentsModel * model = [FlowAttachmentsModel modelWithDictionary:dict];
  410. DownFileViewController *vc = [[DownFileViewController alloc]init];
  411. vc.model = model;
  412. [self.navigationController pushViewController:vc animated:YES];
  413. }
  414. break;
  415. }
  416. }
  417. #pragma mark - cancelMeeting
  418. - (IBAction)cancelMeetingBtn_Click:(id)sender {
  419. WS(weakSelf);
  420. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认预约会议" preferredStyle:UIAlertControllerStyleAlert];
  421. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  422. }];
  423. [ok setValue:k9 forKey:@"_titleTextColor"];
  424. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  425. SHOWLOADING
  426. [[HttpManager sharedHttpManager] POSTWithUrl:CancelMeeting(self.meetingModel.Id) parameters:@{} success:^(id _Nonnull responseObject) {
  427. REMOVESHOW
  428. SHOWSUCCESS(@"已取消预约会议");
  429. if (weakSelf.cancelSussBlock) {
  430. weakSelf.cancelSussBlock();
  431. }
  432. [weakSelf.navigationController popViewControllerAnimated:YES];
  433. } failure:^(NSError * _Nonnull error) {
  434. REMOVESHOW
  435. SHOWERROR([ZYCTool handerResultData:error]);
  436. }];
  437. }];
  438. [alertVC addAction:ok];
  439. [alertVC addAction:noOk];
  440. [self presentViewController:alertVC animated:YES completion:nil];
  441. }
  442. - (IBAction)editMeetingBtn_Click:(id)sender {
  443. WS(weakSelf);
  444. WorkFlowOrderController *workFlowOrderController = [[WorkFlowOrderController alloc] initWithRID:[NSString stringWithFormat:@"%ld",(long)self.meetingId]];
  445. workFlowOrderController.mettingTitle = self.meetingModel.Name;
  446. workFlowOrderController.meetingModel = self.meetingModel;
  447. workFlowOrderController.isEdit = YES;
  448. workFlowOrderController.ChangeSuccessBlock = ^{
  449. [weakSelf getData];
  450. };
  451. [self.navigationController pushViewController:workFlowOrderController animated:YES];
  452. }
  453. @end