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

#import "TransportPurchaseViewController.h"
#import "TransportPurchaseCell.h"
#import "QueryOrder.h"
陈俊俊's avatar
陈俊俊 committed
12
#import "TransportPdtDetail.h"
陈俊俊's avatar
陈俊俊 committed
13
#import "MJRefresh.h"
陈俊俊's avatar
陈俊俊 committed
14 15 16
#define TopMargin 50
#define TableHeight 50
@interface TransportPurchaseViewController ()<UITextFieldDelegate,UITableViewDataSource,UITableViewDelegate>
陈俊俊's avatar
陈俊俊 committed
17 18 19 20
{
    BOOL _isRefresh;
    BOOL _isLoadMore;
    NSInteger _currentPage;
陈俊俊's avatar
陈俊俊 committed
21
    id billNumberObject;
陈俊俊's avatar
陈俊俊 committed
22
}
陈俊俊's avatar
陈俊俊 committed
23 24 25 26
@property (nonatomic,strong)NSMutableArray *indexArr;
@property (nonatomic,strong)NSMutableArray *dataArr;
@property (nonatomic,strong)UITableView *tableView;
@property (nonatomic,strong)UITextField *selectTextFiled;
陈俊俊's avatar
陈俊俊 committed
27
@property (nonatomic,strong)NSString *contentStr;
陈俊俊's avatar
陈俊俊 committed
28 29 30 31 32 33 34
@end

@implementation TransportPurchaseViewController

- (instancetype)init{
    self = [super init];
    if (self) {
陈俊俊's avatar
陈俊俊 committed
35

陈俊俊's avatar
陈俊俊 committed
36 37 38 39 40 41 42 43 44 45 46
    }
    return self;
}
- (void)dealloc{
}

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"选择采购单";
    [self initData];
    [self bulidLayout];
陈俊俊's avatar
陈俊俊 committed
47
    [self createRefresh];
陈俊俊's avatar
陈俊俊 committed
48 49 50 51 52 53
    [self getData];
}
- (void)initData{
    self.dataArr = [NSMutableArray array];
    self.indexArr = [NSMutableArray array];
}
陈俊俊's avatar
陈俊俊 committed
54 55


陈俊俊's avatar
陈俊俊 committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
- (void)getData{
    [ICRUserUtil sharedInstance].needFresh = NO;
    __weak typeof(self)weakSelf = self;
    void(^succ)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        __strong __typeof(weakSelf)strongSelf = weakSelf;
        [strongSelf fetchtPuchaseList:data];
    };
    void(^fail)(id) = ^(id data) {
        [IBTLoadingView hideHUDWithText:nil];
        [IBTLoadingView showTips:data];
    };
    [IBTLoadingView showProgressLabel:@"正在加载..."];
    ICRUserUtil *userUtil = [ICRUserUtil sharedInstance];
    
    NSMutableArray *orderArr =[NSMutableArray array];
    if (orderArr.count == 0) {
        QueryOrder *order = [QueryOrder new];
        order.field = @"billNumber";
        order.direction = @"desc";
        [orderArr addObject:[order dictForCommit]];
陈俊俊's avatar
陈俊俊 committed
77 78 79 80
    }
    billNumberObject = [NSNull null];
    if (self.contentStr.length > 0) {
        billNumberObject = self.contentStr;
陈俊俊's avatar
陈俊俊 committed
81 82
    }
    NSDictionary *dict = @{
陈俊俊's avatar
陈俊俊 committed
83
                           @"state":@"shipping",
陈俊俊's avatar
陈俊俊 committed
84 85
                           @"queryOrders":orderArr,
                           @"userUuid":userUtil.userId,
86
                           @"billNumberProductLike":billNumberObject,
陈俊俊's avatar
陈俊俊 committed
87 88
                           @"fetchParts":@"products",
                           @"pageNumber":@(_currentPage),
陈俊俊's avatar
陈俊俊 committed
89 90 91 92 93 94 95 96
                           @"pageSize":@(20)};
    [[ICRHTTPController sharedController] queryPurchaseWithData:dict success:succ failure:fail];
}
- (void)fetchtPuchaseList:(id)data{
    if (data) {
        NSInteger success = [data[@"success"] integerValue];
        NSString *message  = data[@"message"] ;
        if (success == 1) {
陈俊俊's avatar
陈俊俊 committed
97 98 99 100 101
            if (_currentPage == 0) {
                if (self.dataArr.count > 0) {
                    [self.dataArr removeAllObjects];
                }
            }
陈俊俊's avatar
陈俊俊 committed
102 103 104 105
            NSArray *recodesArr = data[ @"data" ][ @"records" ];
            for (NSDictionary *purchaseBillDict in recodesArr) {
                PurchaseBill *purchaseBill = [[PurchaseBill alloc]init];
                [purchaseBill setValuesForKeysWithDictionary:purchaseBillDict];
陈俊俊's avatar
陈俊俊 committed
106
                purchaseBill.products = [self coverTransportDetProduct:purchaseBillDict[@"products"] purchaseBill:purchaseBill];
陈俊俊's avatar
陈俊俊 committed
107 108
                [self.dataArr addObject:purchaseBill];
            }
陈俊俊's avatar
陈俊俊 committed
109 110 111

            NSDictionary *pageDict = data[ @"data" ][ @"paging" ];
            NSInteger pageCount = [pageDict[@"pageCount"] integerValue];
陈俊俊's avatar
陈俊俊 committed
112
            [self.tableView reloadData];
陈俊俊's avatar
陈俊俊 committed
113 114 115 116 117 118 119
            [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
120 121 122 123 124 125 126 127 128
        }else{
            [IBTLoadingView showTips:message];
        }
        
    }
    else{
        [IBTLoadingView showTips:@"      无记录      "];
    }
}
陈俊俊's avatar
陈俊俊 committed
129
- (NSMutableArray *)coverTransportDetProduct:(NSArray *)arr purchaseBill:(PurchaseBill *)purchaseBill{
陈俊俊's avatar
陈俊俊 committed
130 131 132 133
    NSMutableArray *transArr = [NSMutableArray array];
    for (NSDictionary *arrDict in arr) {
        TransportPdtDetail *detail = [TransportPdtDetail new];
        [detail setValuesForKeysWithDictionary:arrDict];
陈俊俊's avatar
陈俊俊 committed
134
        detail.purchasebillnumber = purchaseBill.billNumber;
陈俊俊's avatar
陈俊俊 committed
135 136 137 138
        detail.productUuid = arrDict[@"product_uuid"];
        detail.productCode = arrDict[@"product_code"];
        detail.productName = arrDict[@"product_name"];
        detail.price = arrDict[@"basePrice"];
陈俊俊's avatar
陈俊俊 committed
139
        detail.packprice = arrDict[@"price"];
陈俊俊's avatar
陈俊俊 committed
140
        detail.note = arrDict[@"remark"] != [NSNull null] ? arrDict[@"remark"] : @"无";
陈俊俊's avatar
陈俊俊 committed
141 142 143 144
        [transArr addObject:detail];
    }
    return transArr;
}
陈俊俊's avatar
陈俊俊 committed
145 146 147 148 149 150 151 152 153 154 155
- (void)checkWithBillNumber{
    if (self.indexArr.count > 0) {
        [self.indexArr removeAllObjects];
    }
    [self.selectTextFiled resignFirstResponder];
    if (self.selectTextFiled.text.length > 0) {
        self.contentStr = self.selectTextFiled.text;
    }else{
        self.contentStr = @"";
    }
    [self getData];
陈俊俊's avatar
陈俊俊 committed
156

陈俊俊's avatar
陈俊俊 committed
157
}
陈俊俊's avatar
陈俊俊 committed
158

陈俊俊's avatar
陈俊俊 committed
159 160 161
#pragma mark - 布局
- (void)bulidLayout
{
陈俊俊's avatar
陈俊俊 committed
162
    self.selectTextFiled = [[UITextField alloc] initWithFrame:CGRectMake(20,5,ScreenSize.width - 100,TopMargin -10)];
陈俊俊's avatar
陈俊俊 committed
163 164 165
    self.selectTextFiled.textAlignment = NSTextAlignmentLeft;
    self.selectTextFiled.background = [UIImage imageNamed:@"textFiled"];
    self.selectTextFiled.delegate = self;
166
    self.selectTextFiled.placeholder = @"类似采购和商品单号";
陈俊俊's avatar
陈俊俊 committed
167 168 169
    self.selectTextFiled.font = GXF_FIFTEENTEN_SIZE;
    [self.view addSubview:self.selectTextFiled];
    
陈俊俊's avatar
陈俊俊 committed
170 171 172 173 174 175 176 177 178 179 180 181
    
    UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
    btn.frame = CGRectMake(self.selectTextFiled.right + 5, 10, 60, TopMargin - 20);
    [btn setTitle:@"开始查询" forState:UIControlStateNormal];
    btn.titleLabel.font = FontSize(13);
    btn.layer.cornerRadius = 5;
    btn.layer.masksToBounds = YES;
    btn.backgroundColor = GXF_NAVIGAYION_COLOR;
    [btn addTarget:self action:@selector(checkWithBillNumber) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
    
    
陈俊俊's avatar
陈俊俊 committed
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
    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;
    
    
    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.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    [self.view addSubview:self.tableView];
    
    
    UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithTitle:@"确定" style:UIBarButtonItemStylePlain target:self action:@selector(sureClick)];
    self.navigationItem.rightBarButtonItem = rightItem;
}
陈俊俊'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
- (void)createRefresh{
    self.tableView.header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
        if (_isRefresh) {
            return ;
        }
        _isRefresh = YES;
        _currentPage = 0;
        [self getData];
    }];
    self.tableView.header.lastUpdatedTimeKey = TransportUpdateDate;
    
    self.tableView.footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
        if (_isLoadMore) {
            return ;
        }
        _isLoadMore = YES;
        _currentPage ++;
        [self getData];
    } ];
}
#pragma mark - 结束刷新
- (void)endRefreshing{
    _isLoadMore = NO;
    _isRefresh = NO;
    [self.tableView.header endRefreshing];
    [self.tableView.footer endRefreshing];
}
陈俊俊's avatar
陈俊俊 committed
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
- (void)deleteTextFieldStr{
    self.selectTextFiled.text = @"";
}
#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 = @"TransPortPurchase";
    TransportPurchaseCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
        cell = [[TransportPurchaseCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
陈俊俊's avatar
陈俊俊 committed
248
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
陈俊俊's avatar
陈俊俊 committed
249 250 251
    }
    if(self.dataArr.count > 0){
        PurchaseBill *bill = _dataArr[indexPath.row];
252
        [cell setPurchaseBill:bill selectArr:self.indexArr];
陈俊俊's avatar
陈俊俊 committed
253 254 255 256
    }
    return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
陈俊俊's avatar
陈俊俊 committed
257 258 259
    //44+38+10 + count* 44
    PurchaseBill *bill = _dataArr[indexPath.row];
    return 102 + bill.products.count * 44;
陈俊俊's avatar
陈俊俊 committed
260 261 262 263 264
}
#pragma mark - 按钮确定
- (void)sureClick{
    [self PopViewControllerAnimated:YES];
    if (self.indexArr.count > 0) {
陈俊俊's avatar
陈俊俊 committed
265 266
        NSMutableArray*arr = [NSMutableArray array];
        for (TransportPdtDetail *detail in self.indexArr) {
陈俊俊's avatar
陈俊俊 committed
267
            detail.purchasePdtDetail = detail.uuid;
陈俊俊's avatar
陈俊俊 committed
268 269 270 271
            detail.uuid = nil;
            [arr addObject:detail];
        }
        self.getProchaseProduct(arr);
陈俊俊's avatar
陈俊俊 committed
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
    }
}
- (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