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

#import "ChooseProductViewController.h"
#import "MaskCell.h"
陈俊俊's avatar
陈俊俊 committed
11 12 13
#import "MJRefresh.h"


n22's avatar
n22 committed
14 15 16 17 18 19 20
#define TopMargin 50
#define TableHeight 50
@interface ChooseProductViewController ()<UITableViewDataSource,UITableViewDelegate,UITextFieldDelegate>
{
    UITextField *_selectTextFiled;
    NSMutableArray *_indexArr;
    NSIndexPath *_currentIndexPath;
陈俊俊's avatar
陈俊俊 committed
21
    BOOL _isRefresh;
n22's avatar
n22 committed
22
    
n22's avatar
n22 committed
23 24 25 26
}
@property (nonatomic,strong)NSMutableArray *dataArr;
@property (nonatomic,strong)UITableView *tableView;
@end
n22's avatar
n22 committed
27 28 29 30 31 32 33

@implementation ChooseProductViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self initData];
    [self bulidLayout];
陈俊俊's avatar
陈俊俊 committed
34 35
    //刷新
    [self createRefresh];
n22's avatar
n22 committed
36 37
}
- (void)initData{
n22's avatar
n22 committed
38
    self.dataArr = [NSMutableArray array];
n22's avatar
n22 committed
39
    _indexArr = [NSMutableArray array];
n22's avatar
n22 committed
40 41
    
    [self fetchProductList];
陈俊俊's avatar
陈俊俊 committed
42 43 44 45 46 47 48 49
}
- (void)createRefresh{
    self.tableView.header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
        if (_isRefresh) {
            return ;
        }
        _isRefresh = YES;
        [self getData];
n22's avatar
n22 committed
50
        CLog(@"%@",[self.tableView.header.lastUpdatedTime httpParameterString]);
陈俊俊's avatar
陈俊俊 committed
51
    }];
n22's avatar
n22 committed
52
   
陈俊俊's avatar
陈俊俊 committed
53 54 55
}

- (void)getData{
n22's avatar
n22 committed
56
    __weak typeof(self)weakSelf = self;
n22's avatar
n22 committed
57 58
    void(^succ)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
n22's avatar
n22 committed
59
        __strong __typeof(weakSelf)strongSelf = weakSelf;
陈俊俊's avatar
陈俊俊 committed
60
        [strongSelf endRefreshing];
n22's avatar
n22 committed
61
        [strongSelf fetchProductList];
n22's avatar
n22 committed
62 63 64 65 66 67 68
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
    };
    [IBTLoadingView showProgressLabel:@"正在加载..."];
    [[ICRHTTPController sharedController] getProductWithPage_number:0 page_size:100 success:succ failure:fail];
n22's avatar
n22 committed
69
}
陈俊俊's avatar
陈俊俊 committed
70 71 72 73 74
#pragma mark - 结束刷新
- (void)endRefreshing{
    _isRefresh = NO;
    [self.tableView.header endRefreshing];
}
n22's avatar
n22 committed
75 76 77 78 79 80 81 82 83 84
#pragma mark -成功
- (void)fetchProductList{
    ICRDatabaseFetchBlock fetchBlk = ^FMResultSet *(FMDatabase *db) {
        NSString * sql = [NSString stringWithFormat:@"SELECT * FROM %@ ORDER BY %@", [Product TableName], @"uuid"];
        return [db executeQuery:sql];
    };
    
    __weak typeof(self)weakSelf = self;
    ICRDatabaseFetchResultsBlock fetchResultsBlk = ^(NSArray *fetchedObjects) {
        __strong __typeof(weakSelf)strongSelf = weakSelf;
n22's avatar
n22 committed
85 86 87 88 89 90 91 92 93 94
        if (!fetchedObjects) {
            [[NSUserDefaults standardUserDefaults] setObject:[NSDate date] forKey:self.tableView.header.lastUpdatedTimeKey];
            [[NSUserDefaults standardUserDefaults] synchronize];
            [self getData];
        }else{
            [strongSelf.dataArr removeAllObjects];
            [strongSelf.dataArr addObject:self.tableView.header.lastUpdatedTime];
            [strongSelf.dataArr addObjectsFromArray:fetchedObjects];
            [self deletePerson];
        }
n22's avatar
n22 committed
95 96 97 98 99 100 101 102
    };
    
    ICRDataBaseController *dbCtrl = [ICRDataBaseController sharedController];
    [dbCtrl runFetchForClass:[Product class]
                  fetchBlock:fetchBlk
           fetchResultsBlock:fetchResultsBlk];
}

n22's avatar
n22 committed
103 104 105 106 107 108
- (void)bulidLayout
{
    _selectTextFiled = [[UITextField alloc] initWithFrame:CGRectMake(20,5,ScreenSize.width - 40,TopMargin -10)];
    _selectTextFiled.textAlignment = NSTextAlignmentLeft;
    _selectTextFiled.background = [UIImage imageNamed:@"textFiled"];
    _selectTextFiled.delegate = self;
陈俊俊's avatar
陈俊俊 committed
109
    _selectTextFiled.font = GXF_FIFTEENTEN_SIZE;
n22's avatar
n22 committed
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    [self.view addSubview:_selectTextFiled];
    
    UIImageView *leftView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 35, 40)];
    leftView.image = [UIImage imageNamed:@"search"];
    _selectTextFiled.leftView = leftView;
    _selectTextFiled.leftViewMode = UITextFieldViewModeAlways;
    
    UIButton *rightView = [UIButton buttonWithType:UIButtonTypeCustom];
    [rightView setImage:[UIImage imageNamed:@"delete"] forState:UIControlStateNormal];
    rightView.frame = CGRectMake(0, 0, 35, 40);
    [rightView addTarget:self action:@selector(deletePerson) forControlEvents:UIControlEventTouchUpInside];
    _selectTextFiled.rightView = rightView;
    _selectTextFiled.rightViewMode = UITextFieldViewModeAlways;
    
    
n22's avatar
n22 committed
125 126 127 128 129
    self.tableView = [[UITableView alloc]initWithFrame:(CGRectMake(0, TopMargin,ScreenSize.width, ScreenSize.height - 64 - TopMargin)) style:(UITableViewStylePlain)];
    self.tableView.backgroundColor = [UIColor whiteColor];
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    [self.view addSubview:self.tableView];
n22's avatar
n22 committed
130 131 132 133 134 135 136
    
    
    UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithTitle:@"确定" style:UIBarButtonItemStylePlain target:self action:@selector(sureClick)];
    self.navigationItem.rightBarButtonItem = rightItem;
}

- (void)sureClick{
n22's avatar
n22 committed
137 138 139
    if(self.isMoreChose){
        
    }else{
n22's avatar
n22 committed
140
        if (self.dataArr.count > 0) {
n22's avatar
n22 committed
141 142
            if (_currentIndexPath) {
                Product *product = self.dataArr[_currentIndexPath.row];
zhu's avatar
zhu committed
143
             //block  回调
n22's avatar
n22 committed
144 145
                self.choseProduct(product);
            }
n22's avatar
n22 committed
146 147
        }
    }
n22's avatar
n22 committed
148 149 150 151 152 153 154
    [self PopViewControllerAnimated:YES];
}


- (void)deletePerson {
    _selectTextFiled.text = @"";
    [_indexArr removeAllObjects];
n22's avatar
n22 committed
155
    _currentIndexPath = nil;
n22's avatar
n22 committed
156
    [self.tableView reloadData];
n22's avatar
n22 committed
157 158 159 160 161 162 163
}

#pragma mark - 协议方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
n22's avatar
n22 committed
164
    return self.dataArr.count;
n22's avatar
n22 committed
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
}
- (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;
        }else{
            cell.Commitbtn.hidden = YES;
        }
    }else{
        if (_currentIndexPath) {
            if (indexPath.row == _currentIndexPath.row) {
                cell.Commitbtn.hidden = NO;
            }else{
                cell.Commitbtn.hidden = YES;
            }
n22's avatar
n22 committed
188 189
        }else{
            cell.Commitbtn.hidden = YES;
n22's avatar
n22 committed
190 191
        }
    }
n22's avatar
n22 committed
192
    if (self.dataArr.count > 0) {
n22's avatar
n22 committed
193 194 195 196 197 198 199 200 201 202
        if (indexPath.row == 0) {
            NSString *dateStr = [self.dataArr[indexPath.row] httpParameterString];
            cell.titleLabel.textColor = GXF_CONTENT_COLOR;
            [cell setTitleStr:[NSString stringWithFormat:@"上次更新时间:%@",dateStr]];
        }else{
            Product *product = self.dataArr[indexPath.row];
            cell.titleLabel.textColor = GXF_LEFTSIX_COLOR;
            NSString *proStr = [NSString stringWithFormat:@"%@[%@]",product.name,product.code];
            [cell setTitleStr:proStr];
        }
n22's avatar
n22 committed
203
    }
n22's avatar
n22 committed
204 205 206 207 208
    return cell;
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
n22's avatar
n22 committed
209 210 211
    if (indexPath.row == 0) {
        return;
    }
n22's avatar
n22 committed
212 213 214 215 216 217 218 219 220
    if (self.isMoreChose == YES) {
        MaskCell *cell = (MaskCell *)[tableView cellForRowAtIndexPath:indexPath];
        cell.Commitbtn.hidden = NO;
        if (![self isHaveIndexPath:indexPath]) {
            [_indexArr addObject:indexPath];
        }
        
        NSString *personStr = @"";
        for (NSIndexPath *index in _indexArr) {
n22's avatar
n22 committed
221
            Product *product = self.dataArr[index.row];
n22's avatar
n22 committed
222
            personStr = [personStr stringByAppendingFormat:@"%@、",product.name];
n22's avatar
n22 committed
223 224 225 226 227 228 229 230 231 232
        }
        _selectTextFiled.text = personStr;
    }else{
        MaskCell *currentCell = (MaskCell *)[tableView cellForRowAtIndexPath:_currentIndexPath];
        currentCell.Commitbtn.hidden = YES;
        MaskCell *cell = (MaskCell *)[tableView cellForRowAtIndexPath:indexPath];
        cell.Commitbtn.hidden = NO;
        _currentIndexPath = indexPath;
        
        
n22's avatar
n22 committed
233
        Product *procuct = self.dataArr[indexPath.row];
n22's avatar
n22 committed
234
        _selectTextFiled.text = procuct.name;
n22's avatar
n22 committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    }
}

- (BOOL)isHaveIndexPath:(NSIndexPath *)indexPath{
    for (NSIndexPath *path in _indexArr) {
        if (path.row == indexPath.row) {
            return YES;
        }
    }
    return NO;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return TableHeight;
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

@end