SearchReportViewController.m 8.46 KB
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10
//
//  SearchReportViewController.m
//  XFFruit
//
//  Created by 陈俊俊 on 15/11/17.
//  Copyright © 2015年 Xummer. All rights reserved.
//

#import "SearchReportViewController.h"
#import "RsearchCell.h"
11
#import "LowerOrgs.h"
陈俊俊's avatar
陈俊俊 committed
12
#import "ReportDetailViewController.h"
13
#import "MJRefresh.h"
陈俊俊's avatar
陈俊俊 committed
14
@interface SearchReportViewController ()<UITextFieldDelegate,UITableViewDataSource,UITableViewDelegate>
15 16 17 18 19 20
{
    NSInteger _currentPage;
    BOOL _isRefresh;
    BOOL _isLoadMore;

}
陈俊俊's avatar
陈俊俊 committed
21 22 23
@property (nonatomic,strong)UITextField *selectTextFiled;
@property (nonatomic,strong)UITableView *tableView;
@property (nonatomic,strong)NSMutableArray *dataArr;
24
@property (nonatomic,strong)NSString *nameAndCode;
陈俊俊's avatar
陈俊俊 committed
25 26 27 28 29 30 31 32

@end

@implementation SearchReportViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"搜索组织";
33
    _currentPage = 0;
陈俊俊's avatar
陈俊俊 committed
34 35
    self.view.backgroundColor = [UIColor whiteColor];
    self.dataArr = [NSMutableArray array];
36 37 38 39 40 41 42 43 44 45
    //布局
    [self bulidLayout];
    [self createRefresh];
    //请求数据
    [self getOrgDataFromServer];
}
#pragma mark - 布局
- (void)bulidLayout{
    //布局
    self.selectTextFiled = [[UITextField alloc] initWithFrame:CGRectMake(20,5,ScreenSize.width - 100, 40)];
陈俊俊's avatar
陈俊俊 committed
46 47 48 49 50 51 52
    self.selectTextFiled.textAlignment = NSTextAlignmentLeft;
    self.selectTextFiled.background = [UIImage imageNamed:@"textFiled"];
    self.selectTextFiled.delegate = self;
    self.selectTextFiled.placeholder = @"输入门店或者区域、代码查询";
    self.selectTextFiled.font = GXF_THREETEENTH_SIZE;
    [self.view addSubview:self.selectTextFiled];
    
53 54 55 56 57 58 59 60 61 62 63
    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);
    [rightView addTarget:self action:@selector(deleteTextFieldStr) forControlEvents:UIControlEventTouchUpInside];
    self.selectTextFiled.rightView = rightView;
    self.selectTextFiled.rightViewMode = UITextFieldViewModeAlways;
陈俊俊's avatar
陈俊俊 committed
64 65
    
    UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
66
    btn.frame = CGRectMake(self.selectTextFiled.right + 5,7, 65, 35);
陈俊俊's avatar
陈俊俊 committed
67 68 69 70 71 72 73 74
    [btn setTitle:@"开始查询" forState:UIControlStateNormal];
    btn.titleLabel.font = FontSize(13);
    btn.layer.cornerRadius = 5;
    btn.layer.masksToBounds = YES;
    btn.backgroundColor = ReportColor;
    [btn addTarget:self action:@selector(checkWithBillNumber) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
    
75
    CGRect rect = CGRectMake(0, 50, ScreenSize.width, ScreenSize.height - 64 - 50);
陈俊俊's avatar
陈俊俊 committed
76 77 78 79
    self.tableView = [[UITableView alloc]initWithFrame:rect style:UITableViewStylePlain];
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    [self.view addSubview:self.tableView];
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
}
- (void)deleteTextFieldStr{
    self.selectTextFiled.text = @"";
}
#pragma mark - 刷新
- (void)createRefresh{
    self.tableView.header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
        if (_isRefresh) {
            return ;
        }
        _isRefresh = YES;
        _currentPage = 0;
        [self getOrgDataFromServer];
    }];
    self.tableView.header.lastUpdatedTimeKey = SearchReportViewDate;
陈俊俊's avatar
陈俊俊 committed
95
    
96 97 98 99 100 101 102 103
    self.tableView.footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
        if (_isLoadMore) {
            return ;
        }
        _isLoadMore = YES;
        _currentPage ++;
        [self getOrgDataFromServer];
    } ];
陈俊俊's avatar
陈俊俊 committed
104
}
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
#pragma mark - 请求服务器
- (void)getOrgDataFromServer{
    __weak typeof(self)weakSelf = self;
    void(^succ)(id) = ^(id data) {
        __strong __typeof(weakSelf)strongSelf = weakSelf;
        //赋值
        [IBTLoadingView hideHUDWithText:nil];
        [strongSelf prepareDataInTable:data];
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
        
    };
    if (!self.nameAndCode) {
        self.nameAndCode = @"";
    }
    ICRUserUtil *userUtil = [ICRUserUtil sharedInstance];
    [IBTLoadingView showProgressLabel:@"正在加载..."];
    NSDictionary *dict = @{
                           @"path":userUtil.belongOrgPath,
陈俊俊's avatar
陈俊俊 committed
126
                           @"codeOrName":self.nameAndCode,
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
                           @"pageNumber":@(_currentPage),
                           @"pageSize":@20
                           };
    [[ICRHTTPController sharedController] queryLowerOrgsWith:dict success:succ failure:fail];
}
#pragma mark - 准备数据
- (void)prepareDataInTable:(id)data{
    if (data) {
        NSInteger success = [data[@"success"] integerValue];
        NSString *message  = data[@"message"] ;
        if (success == 1) {
            if (_currentPage == 0) {
                if (self.dataArr.count > 0) {
                    [self.dataArr removeAllObjects];
                }
            }
            NSArray *arr = data[ @"data" ][@"records"];
            if (arr.count > 0) {
                for (NSDictionary *comDict in arr) {
                    LowerOrgs *com = [[LowerOrgs alloc]init];
                    [com setValuesForKeysWithDictionary:comDict];
                    [self.dataArr addObject:com];
                }
            }
            NSDictionary *pageDict = data[ @"data" ][ @"paging" ];
            NSInteger pageCount = [pageDict[@"pageCount"] integerValue];
            [self.tableView reloadData];
            [self endRefreshing];
            if (pageCount <= _currentPage) {
                [self.tableView.footer noticeNoMoreData];
            }
            if (_currentPage == 0 && self.dataArr.count > 0) {
                [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];
            }
陈俊俊's avatar
陈俊俊 committed
161

162 163 164 165 166 167 168 169 170 171 172 173 174 175
        }else{
            [IBTLoadingView showTips:message];
        }
    }else{
        [IBTLoadingView showTips:@"      无记录      "];
    }
}
#pragma mark - 结束刷新
- (void)endRefreshing{
    _isLoadMore = NO;
    _isRefresh = NO;
    [self.tableView.header endRefreshing];
    [self.tableView.footer endRefreshing];
}
陈俊俊's avatar
陈俊俊 committed
176 177 178 179 180
#pragma mark - tableViewDelegate
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
181
    return self.dataArr.count;
陈俊俊's avatar
陈俊俊 committed
182 183 184 185 186 187 188 189 190 191 192 193
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *cellID = @"SearchCell";
    
    RsearchCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if(cell == nil) {
        cell = [[RsearchCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
    }
    //没有选中风格
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    //取消分割线
    tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
194 195 196 197 198
    if (self.dataArr.count > 0) {
        LowerOrgs *orgs = self.dataArr[indexPath.row];
        [cell setvalueWithLowerOrgs:orgs];
    }
    
陈俊俊's avatar
陈俊俊 committed
199 200 201
    return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
202
    LowerOrgs *orgs = self.dataArr[indexPath.row];
陈俊俊's avatar
陈俊俊 committed
203
    ReportDetailViewController *rvc = [ReportDetailViewController new];
204 205 206 207 208
    Compass *com = [Compass new];
    com.orgUuid = orgs.uuid;
    com.orgName = orgs.name;
    com.orgCode = orgs.code;
    rvc.compass = com;
陈俊俊's avatar
陈俊俊 committed
209 210 211 212 213 214 215 216
    [self PushViewController:rvc animated:YES];
}


- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [RsearchCell cellHeight];
}
217
#pragma mark - 搜索门店
陈俊俊's avatar
陈俊俊 committed
218
- (void)checkWithBillNumber{
219 220 221 222 223 224 225 226
    [self.selectTextFiled resignFirstResponder];
    if (self.selectTextFiled.text.length > 0) {
        self.nameAndCode = self.selectTextFiled.text;
    }else{
        self.nameAndCode = nil;
    }
    _currentPage = 0;
    [self getOrgDataFromServer];
陈俊俊's avatar
陈俊俊 committed
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
}



- (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