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

#import "ChooseParentViewController.h"
陈俊俊's avatar
陈俊俊 committed
10 11
#define TopMargin 50
#define TableHeight 50
陈俊俊's avatar
陈俊俊 committed
12 13 14 15 16

@interface ChooseParentViewController ()<UITableViewDataSource,UITableViewDelegate,UITextFieldDelegate>
@end

@implementation ChooseParentViewController
陈俊俊's avatar
陈俊俊 committed
17

陈俊俊's avatar
陈俊俊 committed
18 19 20 21 22 23 24 25 26
- (void)viewDidLoad {
    [super viewDidLoad];
    [self initData];
    [self bulidLayout];
    [self createRefresh];
}

- (void)initData{
    self.dataArr = [NSMutableArray array];
陈俊俊's avatar
陈俊俊 committed
27 28 29 30
    
    if (!self.indexArr) {
        self.indexArr = [NSMutableArray array];
    }
陈俊俊's avatar
陈俊俊 committed
31
    self.isFirst = YES;
陈俊俊's avatar
陈俊俊 committed
32 33 34 35 36 37 38 39 40
}

#pragma mark - 布局
- (void)bulidLayout
{
    self.selectTextFiled = [[UITextField alloc] initWithFrame:CGRectMake(20,5,ScreenSize.width - 40,TopMargin -10)];
    self.selectTextFiled.textAlignment = NSTextAlignmentLeft;
    self.selectTextFiled.background = [UIImage imageNamed:@"textFiled"];
    self.selectTextFiled.delegate = self;
陈俊俊's avatar
陈俊俊 committed
41
    [self.selectTextFiled addTarget:self action:@selector(boxValueChanged:) forControlEvents:UIControlEventEditingChanged];
陈俊俊's avatar
陈俊俊 committed
42 43 44 45 46 47 48 49 50 51 52
    self.selectTextFiled.font = GXF_FIFTEENTEN_SIZE;
    [self.view addSubview:self.selectTextFiled];
    
    UIImageView *leftView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 35, 40)];
    leftView.image = [UIImage imageNamed:@"search"];
    self.selectTextFiled.leftView = leftView;
    self.selectTextFiled.leftViewMode = UITextFieldViewModeAlways;
    
    UIButton *rightView = [UIButton buttonWithType:UIButtonTypeCustom];
    [rightView setImage:[UIImage imageNamed:@"delete"] forState:UIControlStateNormal];
    rightView.frame = CGRectMake(0, 0, 35, 40);
陈俊俊's avatar
陈俊俊 committed
53
    [rightView addTarget:self action:@selector(deleteTextFieldStr) forControlEvents:UIControlEventTouchUpInside];
陈俊俊's avatar
陈俊俊 committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
    self.selectTextFiled.rightView = rightView;
    self.selectTextFiled.rightViewMode = UITextFieldViewModeAlways;
    
    
    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];
    
    
    UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithTitle:@"确定" style:UIBarButtonItemStylePlain target:self action:@selector(sureClick)];
    self.navigationItem.rightBarButtonItem = rightItem;
}

- (void)createRefresh{
    self.tableView.header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
        if (self.isRefresh) {
            return ;
        }
        self.isRefresh = YES;
陈俊俊's avatar
陈俊俊 committed
75
        [self getBaseDataFromServer];
陈俊俊's avatar
陈俊俊 committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    }];
}

#pragma mark - 协议方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.dataArr.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"cellID";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    return cell;
}
陈俊俊's avatar
陈俊俊 committed
91 92 93 94 95 96 97 98
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    if (indexPath.row == 0) {
        return;
    }
    if (self.isMoreChose == YES) {
        MaskCell *cell = (MaskCell *)[tableView cellForRowAtIndexPath:indexPath];
        if (![self isHaveIndexPath:indexPath]) {
            cell.Commitbtn.hidden = NO;
陈俊俊's avatar
陈俊俊 committed
99
            cell.titleLabel.textColor = BASESELECT_COLOR;
陈俊俊's avatar
陈俊俊 committed
100 101 102
            [self.indexArr addObject:indexPath];
        }else{
            cell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
103
            cell.titleLabel.textColor = [UIColor blackColor];
陈俊俊's avatar
陈俊俊 committed
104 105 106 107 108
            [self.indexArr removeObject:indexPath];
        }
    }else{
        MaskCell *currentCell = (MaskCell *)[tableView cellForRowAtIndexPath:self.currentIndexPath];
        currentCell.Commitbtn.hidden = YES;
陈俊俊's avatar
陈俊俊 committed
109 110
        currentCell.titleLabel.textColor = [UIColor blackColor];

陈俊俊's avatar
陈俊俊 committed
111
        MaskCell *cell = (MaskCell *)[tableView cellForRowAtIndexPath:indexPath];
陈俊俊's avatar
陈俊俊 committed
112
        cell.titleLabel.textColor = BASESELECT_COLOR;
陈俊俊's avatar
陈俊俊 committed
113 114 115 116
        cell.Commitbtn.hidden = NO;
        self.currentIndexPath = indexPath;
    }
}
陈俊俊's avatar
陈俊俊 committed
117 118 119 120 121 122 123

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return TableHeight;
}
- (void)keyboardHidden{
    [self.selectTextFiled resignFirstResponder];
}
陈俊俊's avatar
陈俊俊 committed
124

陈俊俊's avatar
陈俊俊 committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138
#pragma mark - 结束刷新
- (void)endRefreshing{
    self.isRefresh = NO;
    [self.tableView.header endRefreshing];
}

- (BOOL)isHaveIndexPath:(NSIndexPath *)indexPath{
    for (NSIndexPath *path in self.indexArr) {
        if (path.row == indexPath.row) {
            return YES;
        }
    }
    return NO;
}
陈俊俊's avatar
陈俊俊 committed
139 140 141 142 143 144 145 146 147
- (void)deleteTextFieldStr{
    self.selectTextFiled.text = @"";
    [self boxValueChanged:nil];
}
#pragma mark - 按钮事件
- (void)boxValueChanged:(NSNotification *)fication{
//    NSString *tilkeStr = [IBTCommon trimmingCharacters:self.selectTextFiled.text];
//    [self fetchDataList:tilkeStr];
}
陈俊俊's avatar
陈俊俊 committed
148
- (void)tableViewRefresh:(NSString *)titltstr{
陈俊俊's avatar
陈俊俊 committed
149 150 151 152 153 154 155 156 157
    self.currentIndexPath = nil;
    if (self.indexArr.count > 0) {
        [self.indexArr removeAllObjects];
    }
    [self.tableView reloadData];
}
- (void)fetchDataList:(NSString *)titleStr tableStr:(NSString *)tableStr{
    ICRDatabaseFetchBlock fetchBlk = ^FMResultSet *(FMDatabase *db) {
        NSString * sql = @"";
陈俊俊's avatar
陈俊俊 committed
158 159 160
        
        if ([tableStr isEqualToString:GXF_BASECLASS_USER]) {
            if (titleStr.length > 0) {
陈俊俊's avatar
陈俊俊 committed
161
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ WHERE (NAME LIKE '%%%@%%' or LOGIN LIKE  '%%%@%%') AND ENABLED = 1 AND POSITION = 'purchaser'  ORDER BY %@", tableStr,titleStr,titleStr, @"uuid"];
陈俊俊's avatar
陈俊俊 committed
162
            }else{
陈俊俊's avatar
陈俊俊 committed
163
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ WHERE ENABLED = 1 AND POSITION = 'purchaser' ORDER BY %@", tableStr, @"uuid"];
陈俊俊's avatar
陈俊俊 committed
164
            }
陈俊俊's avatar
陈俊俊 committed
165
        }else if([tableStr isEqualToString:GXF_BASECLASS_PRODUCTUNIT]){
陈俊俊's avatar
陈俊俊 committed
166 167 168 169 170
            if (titleStr.length > 0) {
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ WHERE NAME LIKE '%%%@%%' ORDER BY %@", tableStr,titleStr, @"uuid"];
            }else{
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ ORDER BY %@", tableStr, @"uuid"];
            }
陈俊俊's avatar
陈俊俊 committed
171 172 173 174 175 176 177 178 179 180 181 182
        }else if([tableStr isEqualToString:GXF_BASECLASS_ACCOUNTTITLE]){
            if (titleStr.length > 0) {
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ WHERE NAME LIKE '%%%@%%' AND ENABLED = 1 ORDER BY %@", tableStr,titleStr, @"uuid"];
            }else{
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ WHERE ENABLED = 1 ORDER BY %@", tableStr, @"uuid"];
            }
        }else {
            if (titleStr.length > 0) {
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ WHERE NAME LIKE '%%%@%%' or CODE LIKE '%%%@%%' ORDER BY %@", tableStr,titleStr,titleStr, @"uuid"];
            }else{
                sql = [NSString stringWithFormat:@"SELECT * FROM %@ ORDER BY %@", tableStr, @"uuid"];
            }
陈俊俊's avatar
陈俊俊 committed
183 184 185 186 187 188 189
        }
        return [db executeQuery:sql];
    };
    
    __weak typeof(self)weakSelf = self;
    ICRDatabaseFetchResultsBlock fetchResultsBlk = ^(NSArray *fetchedObjects) {
        __strong __typeof(weakSelf)strongSelf = weakSelf;
陈俊俊's avatar
陈俊俊 committed
190 191
        if (fetchedObjects.count == 0 && titleStr.length == 0 && self.isFirst) {
            self.isFirst = NO;
陈俊俊's avatar
陈俊俊 committed
192 193 194 195 196
            [GXF_NSUSERFEFTAULTS setObject:[NSDate date] forKey:self.tableView.header.lastUpdatedTimeKey];
            [GXF_NSUSERFEFTAULTS synchronize];
            [self getBaseDataFromServer];
        }else{
            [strongSelf.dataArr removeAllObjects];
陈俊俊's avatar
陈俊俊 committed
197 198 199 200 201 202
            if (!self.tableView.header.lastUpdatedTime) {
                [strongSelf.dataArr addObject:[NSDate date]];
            }else{
               [strongSelf.dataArr addObject:self.tableView.header.lastUpdatedTime];
            }
            
陈俊俊's avatar
陈俊俊 committed
203
            [strongSelf.dataArr addObjectsFromArray:fetchedObjects];
陈俊俊's avatar
陈俊俊 committed
204 205
            
            [self tableViewRefresh:titleStr];
陈俊俊's avatar
陈俊俊 committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
        }
        
    };
    ICRDataBaseController *dbCtrl = [ICRDataBaseController sharedController];
    [dbCtrl runFetchForClass:NSClassFromString(tableStr)
                  fetchBlock:fetchBlk
           fetchResultsBlock:fetchResultsBlk];
}
#pragma mark -成功
- (void)sureClick{
    if (self.isMoreChose) {
        NSMutableArray *arr = [[NSMutableArray alloc]init];
        for (NSIndexPath *index in self.indexArr) {
            [arr addObject:self.dataArr[index.row]];
        }
        self.choseBaseInfo(arr);
    }else{
        NSMutableArray *arr = [[NSMutableArray alloc]init];
        if (self.dataArr.count > 0) {
            if (self.currentIndexPath) {
                [arr addObject:self.dataArr[self.currentIndexPath.row]];
                self.choseBaseInfo(arr);
            }
        }
    }
    [self PopViewControllerAnimated:YES];
}
陈俊俊's avatar
陈俊俊 committed
233 234

#pragma mark -childFunction
陈俊俊's avatar
陈俊俊 committed
235
-(void)getBaseDataFromServer
陈俊俊's avatar
陈俊俊 committed
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
{
}
- (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