ChooseProductUnitViewController.m 5.27 KB
Newer Older
zhu's avatar
zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//
//  ChooseProductUnitViewController.m
//  XFFruit
//
//  Created by mac on 15/9/15.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "ChooseProductUnitViewController.h"
#define TopMargin 50
#define TableHeight 50
@interface ChooseProductUnitViewController ()

@end

@implementation ChooseProductUnitViewController
- (void)viewDidLoad {
    [super viewDidLoad];
陈俊俊's avatar
陈俊俊 committed
19 20
    self.currentPage = 0;
    self.tableStr = GXF_BASECLASS_PRODUCTUNIT;
zhu's avatar
zhu committed
21
    //记录更新时间
zhu's avatar
zhu committed
22
    self.tableView.header.lastUpdatedTimeKey = ChooseProductUnitUpdateDate;
zhu's avatar
zhu committed
23 24 25
    self.title = @"选择包装单位";
    [self fetchDataList:@"" tableStr:GXF_BASECLASS_PRODUCTUNIT];
}
陈俊俊's avatar
陈俊俊 committed
26
- (void)getBaseDataFromServerWithStartDate:(NSString *)startDate{
zhu's avatar
zhu committed
27 28 29 30
    __weak typeof(self)weakSelf = self;
    void(^succ)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        __strong __typeof(weakSelf)strongSelf = weakSelf;
陈俊俊's avatar
陈俊俊 committed
31 32 33
        //请求成功之后
        strongSelf.startDate = startDate;
        [strongSelf getLastDateFromServer:data];
zhu's avatar
zhu committed
34 35 36 37
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
陈俊俊's avatar
陈俊俊 committed
38 39
        [self endRefreshing];

zhu's avatar
zhu committed
40
    };
陈俊俊's avatar
陈俊俊 committed
41 42 43 44 45
    if (self.currentPage == 0) {
        [IBTLoadingView showProgressLabel:@"正在加载..."];
    }
    [[ICRHTTPController sharedController] getProductUnitWithStartDate:startDate
    Page_number:self.currentPage page_size:100 success:succ failure:fail];
zhu's avatar
zhu committed
46
}
陈俊俊's avatar
陈俊俊 committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

- (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_PRODUCTUNIT];
        }else{
            self.currentPage++;
            [self getBaseDataFromServerWithStartDate:self.startDate];
        }
    }else{
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
    }
    
}


zhu's avatar
zhu committed
69 70 71 72 73 74 75 76 77 78 79 80
- (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;
    }
    if (self.isMoreChose) {
        if ([self isHaveIndexPath:indexPath]) {
            cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
81 82
            cell.titleLabel.textColor = BASESELECT_COLOR;

zhu's avatar
zhu committed
83 84
        }else{
            cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
85 86
            cell.titleLabel.textColor = [UIColor blackColor];

zhu's avatar
zhu committed
87 88 89 90 91
        }
    }else{
        if (self.currentIndexPath) {
            if (indexPath.row == self.currentIndexPath.row) {
                cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
92 93
                cell.titleLabel.textColor = BASESELECT_COLOR;

zhu's avatar
zhu committed
94 95
            }else{
                cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
96 97
                cell.titleLabel.textColor = [UIColor blackColor];

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

zhu's avatar
zhu committed
103 104 105 106 107 108 109 110
        }
    }
    if (self.dataArr.count > 0) {
        if (indexPath.row == 0) {
            NSString *dateStr = [self.dataArr[indexPath.row] httpParameterString];
            cell.titleLabel.textColor = GXF_CONTENT_COLOR;
            [cell setTitleStr:[NSString stringWithFormat:@"上次更新时间:%@",dateStr]];
        }else{
陈俊俊's avatar
陈俊俊 committed
111 112
            GXFProductUnit *product = self.dataArr[indexPath.row];
            NSString *proStr = [NSString stringWithFormat:@"%@",product.name];
zhu's avatar
zhu committed
113 114 115 116 117 118 119 120 121
            [cell setTitleStr:proStr];
        }
    }
    return cell;
}
- (void)boxValueChanged:(NSNotification *)fication{
    NSString *tilkeStr = [IBTCommon trimmingCharacters:self.selectTextFiled.text];
    [self fetchDataList:tilkeStr tableStr:GXF_BASECLASS_PRODUCTUNIT];
}
陈俊俊's avatar
陈俊俊 committed
122 123 124 125 126 127 128 129
- (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++) {
                    GXFProductUnit *type = self.dataArr[i];
陈俊俊's avatar
陈俊俊 committed
130
                    if ([type.name isEqualToString:self.selectStr]) {
陈俊俊's avatar
陈俊俊 committed
131 132 133 134 135 136 137 138 139 140 141 142
                        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
                        self.currentIndexPath = indexPath;
                        break;
                    }
                }
                [self.tableView reloadData];
            }
        }else{
            [super tableViewRefresh:titltstr];
        }
    }
}
zhu's avatar
zhu committed
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}
/*
#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