ChooseCostViewController.m 4.51 KB
Newer Older
n22's avatar
n22 committed
1
//
陈俊俊's avatar
陈俊俊 committed
2
//  ChooseCostViewController.m
n22's avatar
n22 committed
3 4
//  XFFruit
//
陈俊俊's avatar
陈俊俊 committed
5
//  Created by 陈俊俊 on 15/9/7.
n22's avatar
n22 committed
6 7 8
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

陈俊俊's avatar
陈俊俊 committed
9
#import "ChooseCostViewController.h"
n22's avatar
n22 committed
10 11
#define TopMargin 50
#define TableHeight 50
陈俊俊's avatar
陈俊俊 committed
12 13
@interface ChooseCostViewController ()

n22's avatar
n22 committed
14 15
@end

陈俊俊's avatar
陈俊俊 committed
16
@implementation ChooseCostViewController
n22's avatar
n22 committed
17 18 19

- (void)viewDidLoad {
    [super viewDidLoad];
陈俊俊's avatar
陈俊俊 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    self.title = @"费用类型";
    self.tableView.header.lastUpdatedTimeKey = ChooseAccountTitleUpdateDate;
    [self fetchDataList:@"" tableStr:GXF_BASECLASS_ACCOUNTTITLE];
}
- (void)getBaseDataFromServer{
    __weak typeof(self)weakSelf = self;
    void(^succ)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        __strong __typeof(weakSelf)strongSelf = weakSelf;
        [strongSelf endRefreshing];
        [strongSelf fetchDataList:@"" tableStr:GXF_BASECLASS_ACCOUNTTITLE];
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
    };
    [IBTLoadingView showProgressLabel:@"正在加载..."];
    [[ICRHTTPController sharedController] getAccounttitleWithPage_number:0 page_size:100 success:succ failure:fail];
n22's avatar
n22 committed
38 39 40 41 42 43 44 45 46 47
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"MaskCell";
    MaskCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
        cell = [[MaskCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID totalWidth:ScreenSize.width totalHeight:TableHeight];
        tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        cell.Commitbtn.hidden = YES;
    }
陈俊俊's avatar
陈俊俊 committed
48 49
    if (self.isMoreChose) {
        if ([self isHaveIndexPath:indexPath]) {
n22's avatar
n22 committed
50
            cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
51
            cell.titleLabel.textColor = BASESELECT_COLOR;
陈俊俊's avatar
陈俊俊 committed
52
            
n22's avatar
n22 committed
53 54
        }else{
            cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
55
            cell.titleLabel.textColor = [UIColor blackColor];
陈俊俊's avatar
陈俊俊 committed
56
            
n22's avatar
n22 committed
57 58
        }
    }else{
陈俊俊's avatar
陈俊俊 committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
        if (self.currentIndexPath) {
            if (indexPath.row == self.currentIndexPath.row) {
                cell.Commitbtn.hidden = NO;
                cell.titleLabel.textColor = BASESELECT_COLOR;
                
            }else{
                cell.Commitbtn.hidden = YES;
                cell.titleLabel.textColor = [UIColor blackColor];
                
            }
        }else{
            cell.Commitbtn.hidden = YES;
            cell.titleLabel.textColor = [UIColor blackColor];
            
        }
n22's avatar
n22 committed
74 75
    }
    if (self.dataArr.count > 0) {
陈俊俊's avatar
陈俊俊 committed
76 77 78 79 80 81 82 83 84
        if (indexPath.row == 0) {
            NSString *dateStr = [self.dataArr[indexPath.row] httpParameterString];
            cell.titleLabel.textColor = GXF_CONTENT_COLOR;
            [cell setTitleStr:[NSString stringWithFormat:@"上次更新时间:%@",dateStr]];
        }else{
            Accounttitle *accounttitle = self.dataArr[indexPath.row];
            NSString *proStr = [NSString stringWithFormat:@"%@",accounttitle.name];
            [cell setTitleStr:proStr];
        }
n22's avatar
n22 committed
85 86 87
    }
    return cell;
}
陈俊俊's avatar
陈俊俊 committed
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
- (void)boxValueChanged:(NSNotification *)fication{
    NSString *tilkeStr = [IBTCommon trimmingCharacters:self.selectTextFiled.text];
    [self fetchDataList:tilkeStr tableStr:GXF_BASECLASS_ACCOUNTTITLE];
}
- (void)tableViewRefresh:(NSString *)titltstr{
    if (titltstr.length > 0) {
        [super tableViewRefresh:titltstr];
    }else{
        if (self.selectStr.length>0) {
            if (!self.isMoreChose) {
                for (NSInteger i = 1;i< self.dataArr.count; i++) {
                    Accounttitle *type = self.dataArr[i];
                    if ([type.name isEqualToString:self.selectStr]) {
                        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
                        self.currentIndexPath = indexPath;
                        break;
                    }
                }
                [self.tableView reloadData];
            }
        }else{
            [super tableViewRefresh:titltstr];
        }
    }
n22's avatar
n22 committed
112
}
陈俊俊's avatar
陈俊俊 committed
113

n22's avatar
n22 committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end