ChooseVendorViewController.m 5.3 KB
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12
//
//  ChooseSupplierViewController.m
//  XFFruit
//
//  Created by 陈俊俊 on 15/8/23.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "ChooseVendorViewController.h"
#import "Vendor.h"
#define TopMargin 50
#define TableHeight 50
陈俊俊's avatar
陈俊俊 committed
13
@interface ChooseVendorViewController ()
陈俊俊's avatar
陈俊俊 committed
14 15
{
}
陈俊俊's avatar
陈俊俊 committed
16

陈俊俊's avatar
陈俊俊 committed
17 18 19 20 21 22
@end

@implementation ChooseVendorViewController

- (void)viewDidLoad {
    [super viewDidLoad];
陈俊俊's avatar
陈俊俊 committed
23 24
    self.currentPage = 0;
    self.tableStr = GXF_BASECLASS_VENDOR;
陈俊俊's avatar
陈俊俊 committed
25 26 27
    //记录更新时间
    self.tableView.header.lastUpdatedTimeKey = ChooseVendorUpdateDate;
    self.title = @"选择供应商";
陈俊俊's avatar
陈俊俊 committed
28
    [self fetchDataList:@"" tableStr:GXF_BASECLASS_VENDOR];
陈俊俊's avatar
陈俊俊 committed
29 30
}

陈俊俊's avatar
陈俊俊 committed
31
- (void)getBaseDataFromServerWithStartDate:(NSString *)startDate{
n22's avatar
n22 committed
32 33
    __weak typeof(self)weakSelf = self;
    void(^succ)(id) = ^(id data) {
陈俊俊's avatar
陈俊俊 committed
34 35 36 37
        __strong __typeof(weakSelf)strongSelf = weakSelf;
        //请求成功之后
        strongSelf.startDate = startDate;
        [strongSelf getLastDateFromServer:data];
n22's avatar
n22 committed
38 39 40 41
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
陈俊俊's avatar
陈俊俊 committed
42
        [self endRefreshing];
n22's avatar
n22 committed
43
    };
陈俊俊's avatar
陈俊俊 committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    if (self.currentPage == 0) {
        [IBTLoadingView showProgressLabel:@"正在加载..."];
    }
    [[ICRHTTPController sharedController] getVendorWithStartDate:startDate
     Page_number:self.currentPage page_size:100 success:succ failure:fail];
}
- (void)getLastDateFromServer:(id)data
{
    if (data) {
        NSDictionary *pageDict = data[ @"data" ][ @"paging" ];
        NSInteger pageCount = [pageDict[@"pageCount"] integerValue];
        if (pageCount <= self.currentPage) {
            [self endRefreshing];
            [IBTLoadingView hideHUDWithText:nil];
            [self fetchDataList:@"" tableStr:GXF_BASECLASS_VENDOR];
        }else{
            self.currentPage++;
            [self getBaseDataFromServerWithStartDate:self.startDate];
        }
    }else{
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
    }
    
陈俊俊's avatar
陈俊俊 committed
68
}
陈俊俊's avatar
陈俊俊 committed
69 70 71



陈俊俊's avatar
陈俊俊 committed
72 73 74 75 76
#pragma mark - 协议方法
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"MaskCell";
    MaskCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
freecui's avatar
freecui committed
77
        cell = [[MaskCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID totalWidth:ScreenSize.width totalHeight:SEARCH_TABLECELL_HEIGHT];
陈俊俊's avatar
陈俊俊 committed
78 79 80 81 82
        tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
        cell.Commitbtn.hidden = YES;
    }
    if (self.isMoreChose) {
陈俊俊's avatar
陈俊俊 committed
83
        if ([self isHaveIndexPath:indexPath]) {
陈俊俊's avatar
陈俊俊 committed
84
            cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
85 86
            cell.titleLabel.textColor = BASESELECT_COLOR;

陈俊俊's avatar
陈俊俊 committed
87 88
        }else{
            cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
89 90
            cell.titleLabel.textColor = [UIColor blackColor];

陈俊俊's avatar
陈俊俊 committed
91 92
        }
    }else{
陈俊俊's avatar
陈俊俊 committed
93 94
        if (self.currentIndexPath) {
            if (indexPath.row == self.currentIndexPath.row) {
陈俊俊's avatar
陈俊俊 committed
95
                cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
96 97
                cell.titleLabel.textColor = BASESELECT_COLOR;

陈俊俊's avatar
陈俊俊 committed
98 99
            }else{
                cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
100 101
                cell.titleLabel.textColor = [UIColor blackColor];

陈俊俊's avatar
陈俊俊 committed
102 103 104
            }
        }else{
            cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
105 106
            cell.titleLabel.textColor = [UIColor blackColor];

陈俊俊's avatar
陈俊俊 committed
107 108 109
        }
    }
    if (self.dataArr.count > 0) {
陈俊俊's avatar
陈俊俊 committed
110 111 112 113 114 115 116 117 118
        if (indexPath.row == 0) {
            NSString *dateStr = [self.dataArr[indexPath.row] httpParameterString];
            cell.titleLabel.textColor = GXF_CONTENT_COLOR;
            [cell setTitleStr:[NSString stringWithFormat:@"上次更新时间:%@",dateStr]];
        }else{
            Vendor *vendor =  self.dataArr[indexPath.row];
            NSString *proStr = [NSString stringWithFormat:@"%@[%@]",vendor.name,vendor.code];
            [cell setTitleStr:proStr];
        }
陈俊俊's avatar
陈俊俊 committed
119 120 121
    }
    return cell;
}
陈俊俊's avatar
陈俊俊 committed
122 123
- (void)boxValueChanged:(NSNotification *)fication{
    NSString *tilkeStr = [IBTCommon trimmingCharacters:self.selectTextFiled.text];
陈俊俊's avatar
陈俊俊 committed
124
    [self fetchDataList:tilkeStr tableStr:GXF_BASECLASS_VENDOR];
陈俊俊's avatar
陈俊俊 committed
125
}
陈俊俊's avatar
陈俊俊 committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150

- (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++) {
                    Vendor *type = self.dataArr[i];
                    if ([type.uuid isEqualToString:self.selectStr]) {
                        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
                        self.currentIndexPath = indexPath;
                        break;
                    }
                }
                [self.tableView reloadData];
            }
        }else{
            [super tableViewRefresh:titltstr];
        }
    }
}



陈俊俊's avatar
陈俊俊 committed
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
- (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