// // ChooseStoreViewController.m // XFFruit // // Created by 陈俊俊 on 15/8/26. // Copyright (c) 2015年 Xummer. All rights reserved. // #import "ChooseWarehouseViewController.h" #import "MaskCell.h" #define TopMargin 50 #define TableHeight 50 @interface ChooseWarehouseViewController ()<UITableViewDataSource,UITableViewDelegate,UITextFieldDelegate> { UITextField *_selectTextFiled; NSIndexPath *_currentIndexPath; } @property (nonatomic,strong)NSMutableArray *dataArr; @property (nonatomic,strong)UITableView *tableView; @end @implementation ChooseWarehouseViewController - (void)viewDidLoad { [super viewDidLoad]; [self initData]; [self bulidLayout]; } - (void)initData{ self.dataArr = [NSMutableArray array]; [self fetchWarehouseList]; __weak typeof(self)weakSelf = self; void(^succ)(id) = ^(id data) { [IBTLoadingView hideHUDWithText:nil]; if (data) { __strong __typeof(weakSelf)strongSelf = weakSelf; [strongSelf fetchWarehouseList]; }else{ [IBTLoadingView showTips:data]; } }; void(^fail)(id) = ^(id data) { [IBTLoadingView hideHUDWithText:nil]; [IBTLoadingView showTips:data]; }; [IBTLoadingView showProgressLabel:@"正在加载..."]; [[ICRHTTPController sharedController] getWarehouseWithPage_number:0 page_size:100 success:succ failure:fail]; } #pragma mark -成功 - (void)fetchWarehouseList{ ICRDatabaseFetchBlock fetchBlk = ^FMResultSet *(FMDatabase *db) { NSString * sql = [NSString stringWithFormat:@"SELECT * FROM %@ ORDER BY %@", [Warehouse TableName], @"uuid"]; return [db executeQuery:sql]; }; __weak typeof(self)weakSelf = self; ICRDatabaseFetchResultsBlock fetchResultsBlk = ^(NSArray *fetchedObjects) { __strong __typeof(weakSelf)strongSelf = weakSelf; [strongSelf.dataArr removeAllObjects]; [strongSelf.dataArr addObjectsFromArray:fetchedObjects]; [strongSelf.tableView reloadData]; }; ICRDataBaseController *dbCtrl = [ICRDataBaseController sharedController]; [dbCtrl runFetchForClass:[Warehouse class] fetchBlock:fetchBlk fetchResultsBlock:fetchResultsBlk]; } - (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; _selectTextFiled.font = GXF_FIFTEENTEN_SIZE; [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; 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)sureClick{ if (self.dataArr.count > 0) { if (_currentIndexPath) { Warehouse *warehouse = self.dataArr[_currentIndexPath.row]; self.choseWarehouse(warehouse); } } [self PopViewControllerAnimated:YES]; } - (void)deletePerson { _selectTextFiled.text = @""; _currentIndexPath = nil; [self.tableView reloadData]; } #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 = @"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 (_currentIndexPath) { if (indexPath.row == _currentIndexPath.row) { cell.Commitbtn.hidden = NO; }else{ cell.Commitbtn.hidden = YES; } }else{ cell.Commitbtn.hidden = YES; } if (self.dataArr.count > 0) { Warehouse *warehouse = self.dataArr[indexPath.row]; NSString *proStr = [NSString stringWithFormat:@"%@[%@]",warehouse.name,warehouse.code]; [cell setTitleStr:proStr]; } return cell; } - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ MaskCell *currentCell = (MaskCell *)[tableView cellForRowAtIndexPath:_currentIndexPath]; currentCell.Commitbtn.hidden = YES; MaskCell *cell = (MaskCell *)[tableView cellForRowAtIndexPath:indexPath]; cell.Commitbtn.hidden = NO; _currentIndexPath = indexPath; Warehouse *warehouse = self.dataArr[indexPath.row]; _selectTextFiled.text = warehouse.name; } - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ return TableHeight; } - (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