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

#import "ChooseProductViewController.h"
陈俊俊's avatar
陈俊俊 committed
10 11
#define TopMargin 50
#define TableHeight 50
陈俊俊's avatar
陈俊俊 committed
12
@interface ChooseProductViewController ()
n22's avatar
n22 committed
13
{
n22's avatar
n22 committed
14 15
}
@end
n22's avatar
n22 committed
16 17 18 19

@implementation ChooseProductViewController
- (void)viewDidLoad {
    [super viewDidLoad];
陈俊俊's avatar
陈俊俊 committed
20 21 22
    //记录更新时间
     self.tableView.header.lastUpdatedTimeKey = ChooseProductUpdateDate;
     self.title = @"选择商品";
陈俊俊's avatar
陈俊俊 committed
23
    [self fetchDataList:@"" tableStr:GXF_BASECLASS_PRODUCT];
陈俊俊's avatar
陈俊俊 committed
24
}
陈俊俊's avatar
陈俊俊 committed
25
- (void)getBaseDataFromServer{
n22's avatar
n22 committed
26
    __weak typeof(self)weakSelf = self;
n22's avatar
n22 committed
27 28
    void(^succ)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
n22's avatar
n22 committed
29
        __strong __typeof(weakSelf)strongSelf = weakSelf;
陈俊俊's avatar
陈俊俊 committed
30
        [strongSelf endRefreshing];
陈俊俊's avatar
陈俊俊 committed
31
        [strongSelf fetchDataList:@"" tableStr:GXF_BASECLASS_PRODUCT];
n22's avatar
n22 committed
32 33 34 35 36 37 38
    };
    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
39
}
n22's avatar
n22 committed
40
#pragma mark -成功
陈俊俊's avatar
陈俊俊 committed
41
- (void)fetchProductList:(NSString *)titleStr{
n22's avatar
n22 committed
42
    ICRDatabaseFetchBlock fetchBlk = ^FMResultSet *(FMDatabase *db) {
陈俊俊's avatar
陈俊俊 committed
43 44 45 46 47 48
        NSString * sql = @"";
        if (titleStr.length > 0) {
            sql = [NSString stringWithFormat:@"SELECT * FROM %@ WHERE NAME LIKE '%%%@%%' ORDER BY %@", [Product TableName],titleStr, @"uuid"];
        }else{
            sql = [NSString stringWithFormat:@"SELECT * FROM %@ ORDER BY %@", [Product TableName], @"uuid"];
        }
n22's avatar
n22 committed
49 50 51 52 53 54
        return [db executeQuery:sql];
    };
    
    __weak typeof(self)weakSelf = self;
    ICRDatabaseFetchResultsBlock fetchResultsBlk = ^(NSArray *fetchedObjects) {
        __strong __typeof(weakSelf)strongSelf = weakSelf;
陈俊俊's avatar
陈俊俊 committed
55 56 57
        if (![GXF_NSUSERFEFTAULTS objectForKey:ChooseProductUpdateDate]) {
            [GXF_NSUSERFEFTAULTS setObject:[NSDate date] forKey:ChooseProductUpdateDate];
            [GXF_NSUSERFEFTAULTS synchronize];
陈俊俊's avatar
陈俊俊 committed
58
            [self getBaseDataFromServer];
n22's avatar
n22 committed
59 60 61 62
        }else{
            [strongSelf.dataArr removeAllObjects];
            [strongSelf.dataArr addObject:self.tableView.header.lastUpdatedTime];
            [strongSelf.dataArr addObjectsFromArray:fetchedObjects];
陈俊俊's avatar
陈俊俊 committed
63
            [self tableViewRefresh];
n22's avatar
n22 committed
64
        }
n22's avatar
n22 committed
65 66 67 68 69 70 71 72
    };
    
    ICRDataBaseController *dbCtrl = [ICRDataBaseController sharedController];
    [dbCtrl runFetchForClass:[Product class]
                  fetchBlock:fetchBlk
           fetchResultsBlock:fetchResultsBlk];
}

n22's avatar
n22 committed
73

zhu's avatar
zhu committed
74

n22's avatar
n22 committed
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
- (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{
陈俊俊's avatar
陈俊俊 committed
91 92
        if (self.currentIndexPath) {
            if (indexPath.row == self.currentIndexPath.row) {
n22's avatar
n22 committed
93 94 95 96
                cell.Commitbtn.hidden = NO;
            }else{
                cell.Commitbtn.hidden = YES;
            }
n22's avatar
n22 committed
97 98
        }else{
            cell.Commitbtn.hidden = YES;
n22's avatar
n22 committed
99 100
        }
    }
n22's avatar
n22 committed
101
    if (self.dataArr.count > 0) {
n22's avatar
n22 committed
102 103 104 105 106 107 108 109 110 111
        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
112
    }
n22's avatar
n22 committed
113 114
    return cell;
}
陈俊俊's avatar
陈俊俊 committed
115
- (void)boxValueChanged:(NSNotification *)fication{
陈俊俊's avatar
陈俊俊 committed
116
    NSString *tilkeStr = [IBTCommon trimmingCharacters:self.selectTextFiled.text];
陈俊俊's avatar
陈俊俊 committed
117
    [self fetchDataList:tilkeStr tableStr:GXF_BASECLASS_PRODUCT];
陈俊俊's avatar
陈俊俊 committed
118 119 120
}


n22's avatar
n22 committed
121 122 123 124 125
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

@end