TransportPurchaseViewController.m 15.4 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"
Sandy's avatar
Sandy committed
14
#import "ProductStockModel.h"
陈俊俊's avatar
陈俊俊 committed
15 16
#define TopMargin 50
#define TableHeight 50
Sandy's avatar
Sandy committed
17
NSInteger purchaseStockCheckNumber = 0;
陈俊俊's avatar
陈俊俊 committed
18
@interface TransportPurchaseViewController ()<UITextFieldDelegate,UITableViewDataSource,UITableViewDelegate>
陈俊俊's avatar
陈俊俊 committed
19 20 21 22
{
    BOOL _isRefresh;
    BOOL _isLoadMore;
    NSInteger _currentPage;
陈俊俊's avatar
陈俊俊 committed
23
    id billNumberObject;
陈俊俊's avatar
陈俊俊 committed
24
}
Sandy's avatar
Sandy committed
25 26 27
/**
 *  选中的商品
 */
陈俊俊's avatar
陈俊俊 committed
28 29 30 31
@property (nonatomic,strong)NSMutableArray *indexArr;
@property (nonatomic,strong)NSMutableArray *dataArr;
@property (nonatomic,strong)UITableView *tableView;
@property (nonatomic,strong)UITextField *selectTextFiled;
陈俊俊's avatar
陈俊俊 committed
32
@property (nonatomic,strong)NSString *contentStr;
陈俊俊's avatar
陈俊俊 committed
33 34 35 36 37 38 39
@end

@implementation TransportPurchaseViewController

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

陈俊俊's avatar
陈俊俊 committed
41 42 43 44 45 46 47 48 49 50 51
    }
    return self;
}
- (void)dealloc{
}

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


陈俊俊's avatar
陈俊俊 committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
- (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
82 83 84 85
    }
    billNumberObject = [NSNull null];
    if (self.contentStr.length > 0) {
        billNumberObject = self.contentStr;
陈俊俊's avatar
陈俊俊 committed
86
    }
Sandy's avatar
Sandy committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
    NSDictionary *dict;
    
    if (self.isTransportIn) {
        dict = @{
          @"state":PURCHASE_STATE_RECEIVED,
          @"queryOrders":orderArr,
          @"userUuid":userUtil.userId,
          @"billNumberProductLike":billNumberObject,
          @"fetchParts":@"products",
          @"isProductCenter":@(1),
          @"pageNumber":@(_currentPage),
          @"pageSize":@(20)};
    }else{
        dict = @{
                 @"state":[NSNull null],
                 @"stateNotIn":@[PURCHASE_STATE_ABORTED,PURCHASE_STATE_REJECTED],
                 @"queryOrders":orderArr,
                 @"userUuid":userUtil.userId,
                 @"billNumberProductLike":billNumberObject,
                 @"fetchParts":@"products",
                 @"pageNumber":@(_currentPage),
                 @"pageSize":@(20)};
    }
陈俊俊's avatar
陈俊俊 committed
110 111 112 113 114 115 116
    [[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
117 118 119 120 121
            if (_currentPage == 0) {
                if (self.dataArr.count > 0) {
                    [self.dataArr removeAllObjects];
                }
            }
陈俊俊's avatar
陈俊俊 committed
122 123 124 125
            NSArray *recodesArr = data[ @"data" ][ @"records" ];
            for (NSDictionary *purchaseBillDict in recodesArr) {
                PurchaseBill *purchaseBill = [[PurchaseBill alloc]init];
                [purchaseBill setValuesForKeysWithDictionary:purchaseBillDict];
陈俊俊's avatar
陈俊俊 committed
126
                purchaseBill.products = [self coverTransportDetProduct:purchaseBillDict[@"products"] purchaseBill:purchaseBill];
Sandy's avatar
Sandy committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
                
                //*******筛选掉已经选择过的商品******
                //获取缓存的商品数据
                NSMutableArray *arr = [self.dicProduct objectForKey:purchaseBill.billNumber];
                if (arr.count == purchaseBill.products.count) {
                    CLog(@"采购单中的商品已经全部选择过了,不显示这个采购单");
                }else{
                    
                    NSMutableArray *tempProduct = purchaseBill.products.mutableCopy;
                    for (TransportPdtDetail *pdt in arr) {
                        for (TransportPdtDetail *onlinePdt in purchaseBill.products) {
                            if ([pdt.productCode isEqualToString:onlinePdt.productCode]) {
                                [tempProduct removeObject:onlinePdt];
                            }
                        }
                    }
                    purchaseBill.products = tempProduct.mutableCopy;
                    [self.dataArr addObject:purchaseBill];
                }
陈俊俊's avatar
陈俊俊 committed
146
            }
陈俊俊's avatar
陈俊俊 committed
147 148 149

            NSDictionary *pageDict = data[ @"data" ][ @"paging" ];
            NSInteger pageCount = [pageDict[@"pageCount"] integerValue];
陈俊俊's avatar
陈俊俊 committed
150
            [self.tableView reloadData];
陈俊俊's avatar
陈俊俊 committed
151 152 153 154 155 156 157
            [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
158 159 160 161 162 163 164 165 166
        }else{
            [IBTLoadingView showTips:message];
        }
        
    }
    else{
        [IBTLoadingView showTips:@"      无记录      "];
    }
}
陈俊俊's avatar
陈俊俊 committed
167
- (NSMutableArray *)coverTransportDetProduct:(NSArray *)arr purchaseBill:(PurchaseBill *)purchaseBill{
陈俊俊's avatar
陈俊俊 committed
168 169 170 171
    NSMutableArray *transArr = [NSMutableArray array];
    for (NSDictionary *arrDict in arr) {
        TransportPdtDetail *detail = [TransportPdtDetail new];
        [detail setValuesForKeysWithDictionary:arrDict];
陈俊俊's avatar
陈俊俊 committed
172
        detail.purchasebillnumber = purchaseBill.billNumber;
陈俊俊's avatar
陈俊俊 committed
173 174 175 176
        detail.productUuid = arrDict[@"product_uuid"];
        detail.productCode = arrDict[@"product_code"];
        detail.productName = arrDict[@"product_name"];
        detail.price = arrDict[@"basePrice"];
陈俊俊's avatar
陈俊俊 committed
177
        detail.packprice = arrDict[@"price"];
Sandy's avatar
Sandy committed
178 179
        detail.transferBaseQty = arrDict[@"shippedBaseQty"];
        detail.transferQty = arrDict[@"shippedQty"];
陈俊俊's avatar
陈俊俊 committed
180
        detail.note = arrDict[@"remark"] != [NSNull null] ? arrDict[@"remark"] : @"无";
Sandy's avatar
Sandy committed
181 182
        
        
陈俊俊's avatar
陈俊俊 committed
183 184 185 186
        [transArr addObject:detail];
    }
    return transArr;
}
陈俊俊's avatar
陈俊俊 committed
187 188 189 190 191 192 193 194 195 196 197
- (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
198

陈俊俊's avatar
陈俊俊 committed
199
}
陈俊俊's avatar
陈俊俊 committed
200

陈俊俊's avatar
陈俊俊 committed
201 202 203
#pragma mark - 布局
- (void)bulidLayout
{
陈俊俊's avatar
陈俊俊 committed
204
    self.selectTextFiled = [[UITextField alloc] initWithFrame:CGRectMake(20,5,ScreenSize.width - 100,TopMargin -10)];
陈俊俊's avatar
陈俊俊 committed
205 206 207
    self.selectTextFiled.textAlignment = NSTextAlignmentLeft;
    self.selectTextFiled.background = [UIImage imageNamed:@"textFiled"];
    self.selectTextFiled.delegate = self;
208
    self.selectTextFiled.placeholder = @"类似采购和商品单号";
陈俊俊's avatar
陈俊俊 committed
209 210 211
    self.selectTextFiled.font = GXF_FIFTEENTEN_SIZE;
    [self.view addSubview:self.selectTextFiled];
    
陈俊俊's avatar
陈俊俊 committed
212 213 214 215 216 217 218 219 220 221 222 223
    
    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
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    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
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
- (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
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
- (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
290
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
陈俊俊's avatar
陈俊俊 committed
291 292 293
    }
    if(self.dataArr.count > 0){
        PurchaseBill *bill = _dataArr[indexPath.row];
294
        [cell setPurchaseBill:bill selectArr:self.indexArr];
陈俊俊's avatar
陈俊俊 committed
295 296 297 298
    }
    return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
陈俊俊's avatar
陈俊俊 committed
299 300 301
    //44+38+10 + count* 44
    PurchaseBill *bill = _dataArr[indexPath.row];
    return 102 + bill.products.count * 44;
陈俊俊's avatar
陈俊俊 committed
302 303 304
}
#pragma mark - 按钮确定
- (void)sureClick{
Sandy's avatar
Sandy committed
305 306
    
    
Sandy's avatar
Sandy committed
307
//    NSMutableDictionary *dicProduct = [NSMutableDictionary dictionary];
Sandy's avatar
Sandy committed
308
    //把选中的商品和采购单对应,根据单号存储对应的商品
Sandy's avatar
Sandy committed
309 310
    for (PurchaseBill *bill in self.dataArr) {
        for (TransportPdtDetail *detail in bill.products) {
Sandy's avatar
Sandy committed
311
            detail.purchasebillnumber = bill.billNumber;
Sandy's avatar
Sandy committed
312
            if ([self.indexArr containsObject:detail]) {
Sandy's avatar
Sandy committed
313
                NSMutableArray *arrProduct = [self.dicProduct objectForKey:bill.billNumber];
Sandy's avatar
Sandy committed
314 315
                if (!arrProduct) {
                    arrProduct = [NSMutableArray array];
Sandy's avatar
Sandy committed
316
                    [self.dicProduct setObject:arrProduct forKey:bill.billNumber];
Sandy's avatar
Sandy committed
317 318 319 320
                }
                
                [arrProduct addObject:detail];
            }
陈俊俊's avatar
陈俊俊 committed
321
        }
陈俊俊's avatar
陈俊俊 committed
322
    }
Sandy's avatar
Sandy committed
323
    
Sandy's avatar
Sandy committed
324
    NSArray *array = self.dicProduct.allKeys;
Sandy's avatar
Sandy committed
325 326 327 328
    if (array.count == 0) {
        ShowMessage(@"请选择商品!");
        return;
    }
Sandy's avatar
Sandy committed
329
    __weak TransportPurchaseViewController *weakSelf = self;
Sandy's avatar
Sandy committed
330
    //判断数量问题
Sandy's avatar
Sandy committed
331
    [self stockValidWithDic:self.dicProduct billNumbers:array complete:^{
Sandy's avatar
Sandy committed
332 333 334 335 336 337 338 339
            [weakSelf PopViewControllerAnimated:YES];
            if (weakSelf.indexArr.count > 0) {
                NSMutableArray*arr = [NSMutableArray array];
                for (TransportPdtDetail *detail in weakSelf.indexArr) {
                    detail.purchasePdtDetail = detail.uuid;
                    detail.uuid = nil;
                    [arr addObject:detail];
                }
Sandy's avatar
Sandy committed
340 341 342 343 344
                
                if (weakSelf.getProchaseProduct) {
                    weakSelf.getProchaseProduct(arr);
                }
                
345 346 347 348 349 350 351 352
                for (PurchaseBill *bill in self.dataArr) {
                    if ([array containsObject:bill.billNumber]) {
                        if (weakSelf.blockFirstWarehouse) {
                            weakSelf.blockFirstWarehouse(@[bill]);
                        }
                        break;
                    }
                }
Sandy's avatar
Sandy committed
353 354 355 356 357 358 359
            }
    }];
    
    
    
    

陈俊俊's avatar
陈俊俊 committed
360
}
Sandy's avatar
Sandy committed
361 362

- (void)stockValidWithDic:(NSMutableDictionary *)dic billNumbers:(NSArray *)billNumbers complete:(void (^)(void))complete {
Sandy's avatar
Sandy committed
363
    
Sandy's avatar
Sandy committed
364 365 366 367
    NSString *billNum = billNumbers[purchaseStockCheckNumber];
    NSMutableArray *arrProducts = [dic objectForKey:billNum];
    __weak TransportPurchaseViewController *weakSelf = self;
    [HTTP purchaseStockWithPurchaseUuid:billNum success:^(id succ) {
Sandy's avatar
Sandy committed
368
        if (![succ[@"data"] isKindOfClass:[NSArray class]]) {
Sandy's avatar
Sandy committed
369 370
            NSString *msg = [NSString stringWithFormat:@"该批次<%@>在总部系统的库存不足!", billNum];
            ShowMessage(msg);
Sandy's avatar
Sandy committed
371 372 373
            return ;
        }
        
Sandy's avatar
Sandy committed
374 375 376 377
        for (NSDictionary *dict in succ[@"data"]) {
            ProductStockModel *model = [ProductStockModel new];
            [model setValuesForKeysWithDictionary:dict];
            for (TransportPdtDetail *detail in arrProducts) {
Sandy's avatar
Sandy committed
378 379
                if ([detail.productCode isEqualToString:model.productCode]) {
                    
Sandy's avatar
Sandy committed
380
                    if (detail.baseQty.floatValue > model.qty.floatValue) {
Sandy's avatar
Sandy committed
381 382
                        CLog(@"库存不足");
                        purchaseStockCheckNumber = 0;
Sandy's avatar
Sandy committed
383
                        NSString *msg = [NSString stringWithFormat:@"该批次<%@>的商品%@在总部系统的库存不足!", billNum, detail.productName];
Sandy's avatar
Sandy committed
384 385 386
                        ShowMessage(msg);
                        return ;
                    }
Sandy's avatar
Sandy committed
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
                }
            }
        }
        
        purchaseStockCheckNumber += 1;
        if (purchaseStockCheckNumber == billNumbers.count) {
            purchaseStockCheckNumber = 0;
            complete();
        }else{
            [weakSelf stockValidWithDic:dic billNumbers:billNumbers complete:complete];
        }

    } failure:^(id fail) {
        purchaseStockCheckNumber = 0;
    }];
}

Sandy's avatar
Sandy committed
404 405 406 407 408 409 410
- (NSMutableDictionary *)dicProduct {
    if (!_dicProduct) {
        _dicProduct = [NSMutableDictionary dictionary];
    }
    return _dicProduct;
}

Sandy's avatar
Sandy committed
411

陈俊俊's avatar
陈俊俊 committed
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
- (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