ReportViewController.m 19.5 KB
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12
//
//  ReportViewController.m
//  XFFruit
//
//  Created by 陈俊俊 on 15/11/6.
//  Copyright © 2015年 Xummer. All rights reserved.
// 报表

#import "ReportViewController.h"
#import "SaleViewController.h"
#import "PassengerViewController.h"
#import "PassgerPriceViewController.h"
陈俊俊's avatar
陈俊俊 committed
13 14 15 16
#import "GrossRateViewController.h"
#import "CustomSegView.h"
#import "FinishTimeView.h"
#import "SearchReportViewController.h"
17
#import "QueryOrder.h"
陈俊俊's avatar
陈俊俊 committed
18
#import "ReportDetailViewController.h"
陈俊俊's avatar
陈俊俊 committed
19 20 21 22 23 24
@interface ReportViewController ()<UIScrollViewDelegate,CustomSegViewDelegate,FinishTimeViewDelegate>
{
    SaleViewController *svc;
    PassengerViewController *pvc;
    PassgerPriceViewController *ppvc;
    GrossRateViewController *gvc;
25 26 27
    NSInteger _currentView;
    NSInteger _oldView;
    CGRect _currentRect;
陈俊俊's avatar
陈俊俊 committed
28
}
陈俊俊's avatar
陈俊俊 committed
29 30
@property (nonatomic,strong)UIScrollView *scrollView;
@property (nonatomic,assign)NSInteger currentPage;
陈俊俊's avatar
陈俊俊 committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
@property (nonatomic,strong)CustomSegView *segView;
@property (nonatomic,strong)NSString *dayType;
@property (nonatomic,strong)FinishTimeView *startTimeView;
@property (nonatomic,strong)NSString *scopeType;
@property (nonatomic,strong)NSString *selectDay;
@property (nonatomic,strong)NSString *selectMonth;
@property (nonatomic,strong)NSString *selectWeek;
//组织范围
@property (nonatomic,strong)NSString *orgScope;
//数据源数组
@property (nonatomic,strong)NSMutableArray *dataArr;
@property (nonatomic,strong)NSMutableArray *totalArr;
@property (nonatomic,strong)Compass *compass;
@property (nonatomic,assign)NSInteger storeCount;
@property (nonatomic,strong)NSIndexPath *currentIndex;
@property (nonatomic,strong)NSMutableArray *selectArr;

陈俊俊's avatar
陈俊俊 committed
48 49 50 51 52 53 54
@end

@implementation ReportViewController

- (instancetype)init{
    self = [super init];
    if (self) {
陈俊俊's avatar
陈俊俊 committed
55 56
        //添加通知
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getNextDetailData:) name:KNOTIFICATION_GetNextDetailData object:nil];
57 58
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(goReoprtDetail:) name:KNOTIFICATION_GoReportDetail object:nil];

陈俊俊's avatar
陈俊俊 committed
59 60 61 62
    }
    return self;
}

陈俊俊's avatar
陈俊俊 committed
63 64 65 66
- (void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

陈俊俊's avatar
陈俊俊 committed
67 68 69
- (void)viewDidLoad {
    [super viewDidLoad];
    //布局
70
#if 1
陈俊俊's avatar
陈俊俊 committed
71 72 73
    self.dataArr = [NSMutableArray array];
    self.totalArr = [NSMutableArray array];
    self.selectArr = [NSMutableArray array];
陈俊俊's avatar
陈俊俊 committed
74
    [self bulidLayout];
陈俊俊's avatar
陈俊俊 committed
75 76 77 78 79 80 81
    UIBarButtonItem *searchItem = [[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:@"search"] style:UIBarButtonItemStylePlain target:self action:@selector(searchClick)];
    self.navigationItem.rightBarButtonItem = searchItem;
    
    self.dayType = @"day";
     self.scopeType = [IBTCommon stringFromDateWithFormat:[NSDate date] format:@"yyyy-MM-dd"];
    [self getDataFromServer];
#else
陈俊俊's avatar
陈俊俊 committed
82 83 84 85 86 87 88 89
    CGRect rect = CGRectMake(0, 200, self.view.width, 30);
    IBTUILabel *lbl = [[IBTUILabel alloc]initWithFrame:rect];
    lbl.text = @"哎呦,功能还没实现呢,下次再来看看吧。";
    lbl.textAlignment = NSTextAlignmentCenter;
    lbl.font = [UIFont systemFontOfSize:15];
    lbl.textColor = GXF_NAVIGAYION_COLOR;
    [self.view addSubview:lbl];
#endif
陈俊俊's avatar
陈俊俊 committed
90
}
陈俊俊's avatar
陈俊俊 committed
91
- (void)searchClick{
92 93 94 95
    if (self.startTimeView) {
        [self.startTimeView removeFromSuperview];
        self.startTimeView = nil;
    }
陈俊俊's avatar
陈俊俊 committed
96 97 98 99 100 101 102 103 104 105 106
    SearchReportViewController *srvc = [SearchReportViewController new];
    [self PushViewController:srvc animated:YES];
}

#pragma mark - 获取上部数据
- (void)getDataFromServer{
    
    __weak typeof(self)weakSelf = self;
    void(^succ)(id) = ^(id data) {
        __strong __typeof(weakSelf)strongSelf = weakSelf;
        //赋值
陈俊俊's avatar
陈俊俊 committed
107 108 109 110 111 112 113 114 115
        NSInteger success = [data[@"success"] integerValue];
        NSString *message  = data[@"message"] ;
        if (success == 1) {
            [strongSelf prepareDataInScrollView:data];
            [strongSelf getBottomData:nil];
        }else{
            [IBTLoadingView hideHUDWithText:message];
            [IBTLoadingView showTips:data];
        }
陈俊俊's avatar
陈俊俊 committed
116 117 118 119
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
120

陈俊俊's avatar
陈俊俊 committed
121 122
    };
    [IBTLoadingView showProgressLabel:@"正在加载..."];
123 124 125 126 127 128 129 130
    NSMutableArray *orderArr =[NSMutableArray array];
    if (orderArr.count == 0) {
        QueryOrder *order = [QueryOrder new];
        order.field = @"orgCode";
        order.direction = @"desc";
        [orderArr addObject:[order dictForCommit]];
        
    }
陈俊俊's avatar
陈俊俊 committed
131 132
    ICRUserUtil *userUtil = [ICRUserUtil sharedInstance];
    NSDictionary *dict = @{
133 134
                           @"dataScopeType":self.dayType,
                           @"dataScope":self.scopeType,
135 136
                           @"orgUuid":userUtil.org_uuid,
                           @"fetchScope":@"owner",
137
                           @"queryOrders":orderArr,
138 139
                           @"pageNumber":@0,
                           @"pageSize":@100
陈俊俊's avatar
陈俊俊 committed
140 141 142 143 144 145 146 147 148
                           };
    [[ICRHTTPController sharedController] queryHomepageWith:dict success:succ failure:fail];
}

- (void)prepareDataInScrollView:(id)data{
    if (data) {
        NSInteger success = [data[@"success"] integerValue];
        NSString *message  = data[@"message"] ;
        if (success == 1) {
149 150 151 152 153 154 155 156 157
            NSDictionary *compassDict = data[ @"data" ][@"salesData"];
            NSArray *arr = compassDict[@"records"];
            if (arr.count > 0) {
                for (NSDictionary *comDict in arr) {
                    Compass *com = [[Compass alloc]init];
                    [com setValuesForKeysWithDictionary:comDict];
                    self.compass = com;
                }
            }
陈俊俊's avatar
陈俊俊 committed
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
            [self setValueInScrollView];
        }else{
            [IBTLoadingView showTips:message];
        }
    }else{
        [IBTLoadingView showTips:@"      无记录      "];
    }
}
- (void)setValueInScrollView{
    [svc setValueInSale:self.compass];
    [pvc setValueInPassenger:self.compass];
    [ppvc setValueInPassgerPrice:self.compass];
    [gvc setValueInGrossRate:self.compass];
}

//获取底部详情数据
- (void)getBottomData:(NSIndexPath *)indexPath{
    __weak typeof(self)weakSelf = self;
    void(^succ)(id) = ^(id data) {
        __strong __typeof(weakSelf)strongSelf = weakSelf;
        //赋值
179 180
        [IBTLoadingView hideHUDWithText:nil];
        [strongSelf downLoadData:data indexPath:indexPath];
陈俊俊's avatar
陈俊俊 committed
181 182 183 184 185 186 187
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
    };
    ICRUserUtil *userUtil = [ICRUserUtil sharedInstance];
    if (!self.orgScope) {
188 189 190 191 192 193 194 195
       self.orgScope = userUtil.org_uuid;
    }
    NSMutableArray *orderArr =[NSMutableArray array];
    if (orderArr.count == 0) {
        QueryOrder *order = [QueryOrder new];
        order.field = @"orgCode";
        order.direction = @"desc";
        [orderArr addObject:[order dictForCommit]];
陈俊俊's avatar
陈俊俊 committed
196
    }
197 198 199
    if (indexPath) {
        [IBTLoadingView showProgressLabel:@"正在加载..."];
    }
陈俊俊's avatar
陈俊俊 committed
200
    NSDictionary *dict = @{
201 202
                           @"dataScopeType":self.dayType,
                           @"dataScope":self.scopeType,
203 204
                           @"orgUuid":self.orgScope,
                           @"fetchScope":@"childs",
205
                           @"queryOrders":orderArr,
206 207
                           @"pageNumber":@0,
                           @"pageSize":@100
陈俊俊's avatar
陈俊俊 committed
208
                           };
209
    [[ICRHTTPController sharedController] queryHomepageWith:dict success:succ failure:fail];
陈俊俊's avatar
陈俊俊 committed
210 211 212 213 214 215 216
}

- (void)downLoadData:(id)data indexPath:(NSIndexPath *)indexPath{
    if (data) {
        NSInteger success = [data[@"success"] integerValue];
        NSString *message  = data[@"message"] ;
        if (success == 1) {
217 218 219 220 221 222 223 224 225 226 227 228 229 230
            NSDictionary *recodesDict = data[ @"data" ][ @"salesData" ];
            NSArray *recodesArr = recodesDict[@"records"];
            if (!indexPath) {
                self.storeCount =[data[ @"data" ][ @"stores" ] integerValue];
                if (self.dataArr.count > 0) {
                    [self.dataArr removeAllObjects];
                }
                if (self.totalArr.count > 0) {
                    [self.totalArr removeAllObjects];
                }
                if (self.selectArr.count > 0) {
                    [self.selectArr removeAllObjects];
                }
            }
陈俊俊's avatar
陈俊俊 committed
231
            for (NSDictionary *orgDict in recodesArr) {
232
                Compass *orgCompass = [[Compass alloc]init];
陈俊俊's avatar
陈俊俊 committed
233
                [orgCompass setValuesForKeysWithDictionary:orgDict];
234 235
                if (!indexPath) {
                    [self.dataArr addObject:orgCompass]; 
陈俊俊's avatar
陈俊俊 committed
236 237 238
                }
                [self.totalArr addObject:orgCompass];
            }
239 240 241 242 243
            //刷新tableView
            [self refreshAllTable];
            if (indexPath) {
                [self actionTableView:indexPath];
            }
陈俊俊's avatar
陈俊俊 committed
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
        }else{
            [IBTLoadingView showTips:message];
        }
    }else{
        [IBTLoadingView showTips:@"      无记录      "];
    }
}
#pragma mark - 刷新所有的tableView
- (void)refreshAllTable{
    svc.count = self.storeCount;
    pvc.count = self.storeCount;
    ppvc.count = self.storeCount;
    gvc.count = self.storeCount;
    svc.dataArr = self.dataArr;
    pvc.dataArr = self.dataArr;
    ppvc.dataArr = self.dataArr;
    gvc.dataArr = self.dataArr;
    [svc.tableView reloadData];
    [pvc.tableView reloadData];
    [ppvc.tableView reloadData];
    [gvc.tableView reloadData];
}
陈俊俊's avatar
陈俊俊 committed
266 267 268

#pragma mark - 布局
- (void)bulidLayout{
269

陈俊俊's avatar
陈俊俊 committed
270 271 272 273 274 275 276 277
    self.view.backgroundColor = [UIColor whiteColor];
    CGRect rect = CGRectMake(10, 10, ScreenSize.width - 10*2, 30);
    NSArray *arr = @[SaleDay,SaleWeek,SaleMonth];
    self.segView = [[CustomSegView alloc]initWithFrame:rect withArr:arr];
    self.segView.delegate = self;
    [self.view addSubview:self.segView];
    
    self.scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, self.segView.bottom, ScreenSize.width, ScreenSize.height - 49 - 64- self.segView.bottom)];
陈俊俊's avatar
陈俊俊 committed
278 279 280 281
    self.scrollView.delegate = self;
    self.scrollView.showsHorizontalScrollIndicator  = NO;
    self.scrollView.showsVerticalScrollIndicator = NO;
    self.scrollView.pagingEnabled = YES;
282
    [self.view addSubview:self.scrollView];
陈俊俊's avatar
陈俊俊 committed
283
    
陈俊俊's avatar
陈俊俊 committed
284
    svc = [SaleViewController new];
陈俊俊's avatar
陈俊俊 committed
285 286
    [self addChildViewController:svc];
    
陈俊俊's avatar
陈俊俊 committed
287
    pvc = [PassengerViewController new];
陈俊俊's avatar
陈俊俊 committed
288 289
    [self addChildViewController:pvc];
    
陈俊俊's avatar
陈俊俊 committed
290
    ppvc = [PassgerPriceViewController new];
陈俊俊's avatar
陈俊俊 committed
291 292
    [self addChildViewController:ppvc];
    
陈俊俊's avatar
陈俊俊 committed
293 294
    gvc = [GrossRateViewController new];
    [self addChildViewController:gvc];
陈俊俊's avatar
陈俊俊 committed
295
    
296
    rect = CGRectMake(0, 0, ScreenSize.width, ScreenSize.height - 49 - 64- self.segView.bottom);
陈俊俊's avatar
陈俊俊 committed
297
    svc.view.frame = rect;
298
    [self.scrollView addSubview:svc.view];
陈俊俊's avatar
陈俊俊 committed
299
    
300
    rect = CGRectMake(self.scrollView.width,0 , ScreenSize.width, ScreenSize.height - 49 - 64- self.segView.bottom);
陈俊俊's avatar
陈俊俊 committed
301
    pvc.view.frame = rect;
302
    [self.scrollView addSubview:pvc.view];
陈俊俊's avatar
陈俊俊 committed
303 304 305
    
    rect = CGRectMake(self.scrollView.width*2, 0, ScreenSize.width, self.scrollView.height);
    ppvc.view.frame = rect;
306
    [self.scrollView addSubview:ppvc.view];
陈俊俊's avatar
陈俊俊 committed
307
    
陈俊俊's avatar
陈俊俊 committed
308 309
    rect = CGRectMake(self.scrollView.width*3, 0, ScreenSize.width, self.scrollView.height);
    gvc.view.frame = rect;
310
    [self.scrollView addSubview:gvc.view];
陈俊俊's avatar
陈俊俊 committed
311
    
312
    self.scrollView.contentSize = CGSizeMake(self.scrollView.width * 4, self.scrollView.height);
陈俊俊's avatar
陈俊俊 committed
313 314
}

陈俊俊's avatar
陈俊俊 committed
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
#pragma mark - segViewDelegate
- (void)customSegOneClick:(NSString *)title{
    //日周年切换
    NSString *dayType = @"";
    if ([title isEqualToString:SaleDay]) {
        dayType = @"day";
        self.scopeType = [IBTCommon stringFromDateWithFormat:[NSDate date] format:@"yyyy-MM-dd"];
    }else if ([title isEqualToString:SaleWeek]) {
        dayType = @"week";
        self.scopeType = [IBTCommon getWeekFromDate];
    }else if ([title isEqualToString:SaleMonth]) {
        dayType = @"month";
        self.scopeType = [IBTCommon stringFromDateWithFormat:[NSDate date] format:@"yyyy-MM"];
    }
    CLog(@"-------%@",self.scopeType);
    self.dayType = dayType;
331
    self.orgScope = nil;
陈俊俊's avatar
陈俊俊 committed
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
    [self getDataFromServer];
}
- (void)customSegTwoClick:(NSString *)title{
    //选择历史查看
    if ([title isEqualToString:SaleDay]) {
        [self startDatePickView:SaleEnDay];
    }else if ([title isEqualToString:SaleWeek]) {
        [self startDatePickView:SaleEnWeek];
    }else if ([title isEqualToString:SaleMonth]) {
        [self startDatePickView:SaleEnMonth];
    }
}

- (void)startDatePickView:(NSString *)type{
    if (!self.startTimeView) {
        
        NSString *currentStr  = @"";
        if ([type isEqualToString:SaleEnDay]) {
            if (self.selectDay) {
                currentStr =  self.selectDay;
            }else{
                currentStr = [IBTCommon stringFromDateWithFormat:[NSDate date] format:@"yyyy-MM-dd"];
            }
            
        }else if([type isEqualToString:SaleEnMonth]){
            if (self.selectMonth) {
                currentStr =  self.selectMonth;
            }else{
                currentStr = [IBTCommon stringFromDateWithFormat:[NSDate date] format:@"yyyy-MM"];
            }
        }else{
            if (self.selectWeek) {
                currentStr =  self.selectWeek;
            }else{
                currentStr = [IBTCommon getWeekFromDate];
            }
        }

        self.startTimeView = [[FinishTimeView alloc] initWithFrame:CGRectMake(0, ScreenSize.height, ScreenSize.width, ScreenSize.height - 64) withDate:currentStr type:type];
        self.startTimeView.delegate = self;
        self.startTimeView.backgroundColor        = RGBA(0, 0, 0 ,0.5);
        [AppWindow addSubview:self.startTimeView];
        
        [UIView animateWithDuration:0.15 animations:^{
            CGRect startFrame =  self.startTimeView.frame;
            startFrame.origin.y =  64;
            self.startTimeView.frame = startFrame;
        } completion:^(BOOL finished) {
            
        }];
    }
}
- (void)cancelTimeView{
    [self clearDatePickView];
}
- (void)okTimeView:(NSString *)time withType:(NSString *)type{
    CLog(@"--------%@",time);
    // 关闭选择器
    [self clearDatePickView];
    if ([type isEqualToString:SaleEnDay]) {
        self.selectDay = time;
    }else if ([type isEqualToString:SaleEnWeek]) {
        self.selectWeek = time;
    }else if ([type isEqualToString:SaleEnMonth]) {
        self.selectMonth = time;
    }
    self.scopeType = time;
399
    self.orgScope = nil;
陈俊俊's avatar
陈俊俊 committed
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
    [self getDataFromServer];
}
#pragma mark - 取消
- (void)clearDatePickView{
    [UIView animateWithDuration:0.15 animations:^{
        CGRect startFrame =  self.startTimeView.frame;
        startFrame.origin.y = ScreenSize.height;
        self.startTimeView.frame = startFrame;
    } completion:^(BOOL finished) {
        [self.startTimeView removeFromSuperview];
        self.startTimeView = nil;
    }];
}
- (void)getNextDetailData:(NSNotification *)fication{
    NSDictionary *dict = fication.userInfo;
    NSIndexPath *indexPath = dict[@"indexPath"];
416
        Compass *parentCompass = [self.dataArr objectAtIndex:indexPath.row];
陈俊俊's avatar
陈俊俊 committed
417
        //如果当前点击的不是删除,则要先获取数据在进行插入
陈俊俊's avatar
陈俊俊 committed
418
        if (![self isHaveIndexPath:parentCompass.orgUuid]) {
陈俊俊's avatar
陈俊俊 committed
419
            if (parentCompass.isLeaf) {
陈俊俊's avatar
陈俊俊 committed
420 421 422
                //如果是子节点就不用进行网络请求
                return;
            }//不是子节点进行网络请求
423 424
            self.orgScope = parentCompass.orgUuid;
            [self getBottomData:indexPath];
陈俊俊's avatar
陈俊俊 committed
425 426 427 428 429
            return;
        }
    [self actionTableView:indexPath];
}
- (void)actionTableView:(NSIndexPath *)indexPath{
430
    Compass *parentCompass = [self.dataArr objectAtIndex:indexPath.row];
陈俊俊's avatar
陈俊俊 committed
431 432 433 434
    NSInteger startPosition = indexPath.row+1;
    NSInteger endPosition = startPosition;
    BOOL expand = NO;
    for (int i=0; i<self.totalArr.count; i++) {
435
        Compass *node = [self.totalArr objectAtIndex:i];
436
        if ([node.upperUuid isEqualToString:parentCompass.orgUuid]) {
陈俊俊's avatar
陈俊俊 committed
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
            //修改二级节点的属性为为原属性相反属性
            node.expand = !node.expand;
            if (node.expand) {
                [self.dataArr insertObject:node atIndex:endPosition];
                expand = YES;
                endPosition++;
            }else{
                expand = NO;
                endPosition = [self removeAllNodesAtParentNode:parentCompass];
                break;
            }
        }
    }
    
    //获得需要修正的indexPath
    NSMutableArray *indexPathArray = [NSMutableArray array];
    for (NSInteger i=startPosition; i<endPosition; i++) {
        NSIndexPath *tempIndexPath = [NSIndexPath indexPathForRow:i inSection:0];
        [indexPathArray addObject:tempIndexPath];
    }
陈俊俊's avatar
陈俊俊 committed
457
    
陈俊俊's avatar
陈俊俊 committed
458 459
    //插入或者删除相关节点
    if (expand) {
陈俊俊's avatar
陈俊俊 committed
460
        [self.selectArr addObject:parentCompass.orgUuid];
陈俊俊's avatar
陈俊俊 committed
461 462 463 464 465
        [self insertDataWithTable:svc.tableView arr:indexPathArray];
        [self insertDataWithTable:ppvc.tableView arr:indexPathArray];
        [self insertDataWithTable:pvc.tableView arr:indexPathArray];
        [self insertDataWithTable:gvc.tableView arr:indexPathArray];
    }else{
陈俊俊's avatar
陈俊俊 committed
466
        [self.selectArr removeObject:parentCompass.orgUuid];
陈俊俊's avatar
陈俊俊 committed
467 468 469 470 471 472 473
        [self deleteDataWithTable:svc.tableView arr:indexPathArray];
        [self deleteDataWithTable:pvc.tableView arr:indexPathArray];
        [self deleteDataWithTable:ppvc.tableView arr:indexPathArray];
        [self deleteDataWithTable:gvc.tableView arr:indexPathArray];
    }
    [self refreshAllTable];

陈俊俊's avatar
陈俊俊 committed
474 475
}

陈俊俊's avatar
陈俊俊 committed
476 477 478 479 480
- (void)insertDataWithTable:(UITableView *)tableView arr:(NSMutableArray *)arr{
    [tableView insertRowsAtIndexPaths:arr withRowAnimation:UITableViewRowAnimationFade];
}
- (void)deleteDataWithTable:(UITableView *)tableView arr:(NSMutableArray *)arr{
    [tableView deleteRowsAtIndexPaths:arr withRowAnimation:UITableViewRowAnimationFade];
陈俊俊's avatar
陈俊俊 committed
481
}
陈俊俊's avatar
陈俊俊 committed
482 483 484 485 486 487 488
/**
 *  删除该父节点下的所有子节点(包括孙子节点)
 *
 *  @param parentNode 父节点
 *
 *  @return 该父节点下一个相邻的统一级别的节点的位置
 */
489
-(NSUInteger)removeAllNodesAtParentNode : (Compass *)parentNode{
陈俊俊's avatar
陈俊俊 committed
490 491 492
    NSUInteger startPosition = [self.dataArr indexOfObject:parentNode];
    NSUInteger endPosition = startPosition;
        for (NSUInteger i=startPosition+1; i<self.dataArr.count; i++) {
493
            Compass *node = [self.dataArr objectAtIndex:i];
陈俊俊's avatar
陈俊俊 committed
494 495 496 497 498 499 500 501 502 503 504 505 506
            endPosition++;
            if (node.level <= parentNode.level) {
                break;
            }
            if(endPosition == self.dataArr.count-1){
                endPosition++;
                node.expand = NO;
                break;
            }
            node.expand = NO;
        }
        if (endPosition>startPosition) {
            for (NSInteger i = startPosition+1; i < endPosition; i++) {
507 508 509
                Compass *parentCompass = self.dataArr[i];
                for (Compass *orgCompass in self.totalArr) {
                    if (parentCompass.orgUuid == orgCompass.orgUuid) {
陈俊俊's avatar
陈俊俊 committed
510 511 512 513 514 515 516 517 518 519
                        [self.totalArr removeObject:orgCompass];
                        break;
                    }
                }
            }
            [self.dataArr removeObjectsInRange:NSMakeRange(startPosition+1, endPosition-startPosition-1)];
        }
    return endPosition;
}

陈俊俊's avatar
陈俊俊 committed
520 521 522
- (BOOL)isHaveIndexPath:(NSString *)orgUuid{
    for (NSString *selectoUuid in self.selectArr) {
        if ([selectoUuid isEqualToString:orgUuid]) {
陈俊俊's avatar
陈俊俊 committed
523 524 525 526 527 528
            return YES;
        }
    }
    return NO;
}

529 530
#pragma mark - 详情页面跳转
- (void)goReoprtDetail:(NSNotification *)finication{
531 532
    NSDictionary *dict = finication.userInfo;
    Compass *compass = dict[@"compass"];
陈俊俊's avatar
陈俊俊 committed
533
    ReportDetailViewController *rvc = [ReportDetailViewController new];
534 535
    rvc.compass = compass;
    rvc.title = compass.orgName;
陈俊俊's avatar
陈俊俊 committed
536
    [self PushViewController:rvc animated:YES];
537
}
陈俊俊's avatar
陈俊俊 committed
538 539 540 541 542 543

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

@end