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

@implementation TransportPurchaseViewController

- (instancetype)init{
    self = [super init];
    if (self) {
41
        
陈俊俊's avatar
陈俊俊 committed
42 43 44 45 46 47 48 49 50 51 52
    }
    return self;
}
- (void)dealloc{
}

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


陈俊俊's avatar
陈俊俊 committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
- (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
83 84 85 86
    }
    billNumberObject = [NSNull null];
    if (self.contentStr.length > 0) {
        billNumberObject = self.contentStr;
陈俊俊's avatar
陈俊俊 committed
87
    }
Sandy's avatar
Sandy committed
88 89
    NSDictionary *dict;
    
Sandy's avatar
Sandy committed
90
    if (self.isTransportIn) {
Sandy's avatar
Sandy committed
91
        dict = @{
92 93 94 95 96 97 98 99
                 @"state":PURCHASE_STATE_RECEIVED,
                 @"queryOrders":orderArr,
                 @"userUuid":userUtil.userId,
                 @"billNumberProductLike":billNumberObject,
                 @"fetchParts":@"products",
                 @"isProductCenter":@(1),
                 @"pageNumber":@(_currentPage),
                 @"pageSize":@(20)};
Sandy's avatar
Sandy committed
100 101 102 103 104 105 106 107 108 109 110
    }else{
        dict = @{
                 @"state":PURCHASE_STATE_RECEIVED,
                 @"queryOrders":orderArr,
                 @"userUuid":userUtil.userId,
                 @"billNumberProductLike":billNumberObject,
                 @"fetchParts":@"products",
                 @"receiveWrhUuid":self.receiveWrhUuid,
                 @"pageNumber":@(_currentPage),
                 @"pageSize":@(20)};
    }
陈俊俊's avatar
陈俊俊 committed
111 112 113 114 115 116 117
    [[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
118 119 120 121 122
            if (_currentPage == 0) {
                if (self.dataArr.count > 0) {
                    [self.dataArr removeAllObjects];
                }
            }
陈俊俊's avatar
陈俊俊 committed
123 124 125 126
            NSArray *recodesArr = data[ @"data" ][ @"records" ];
            for (NSDictionary *purchaseBillDict in recodesArr) {
                PurchaseBill *purchaseBill = [[PurchaseBill alloc]init];
                [purchaseBill setValuesForKeysWithDictionary:purchaseBillDict];
陈俊俊's avatar
陈俊俊 committed
127
                purchaseBill.products = [self coverTransportDetProduct:purchaseBillDict[@"products"] purchaseBill:purchaseBill];
Sandy's avatar
Sandy committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
                
                //*******筛选掉已经选择过的商品******
                //获取缓存的商品数据
                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
147
            }
148
            
陈俊俊's avatar
陈俊俊 committed
149 150
            NSDictionary *pageDict = data[ @"data" ][ @"paging" ];
            NSInteger pageCount = [pageDict[@"pageCount"] integerValue];
陈俊俊's avatar
陈俊俊 committed
151
            [self.tableView reloadData];
陈俊俊's avatar
陈俊俊 committed
152 153 154 155 156 157 158
            [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
159 160 161 162 163 164 165 166 167
        }else{
            [IBTLoadingView showTips:message];
        }
        
    }
    else{
        [IBTLoadingView showTips:@"      无记录      "];
    }
}
陈俊俊's avatar
陈俊俊 committed
168
- (NSMutableArray *)coverTransportDetProduct:(NSArray *)arr purchaseBill:(PurchaseBill *)purchaseBill{
陈俊俊's avatar
陈俊俊 committed
169 170 171 172
    NSMutableArray *transArr = [NSMutableArray array];
    for (NSDictionary *arrDict in arr) {
        TransportPdtDetail *detail = [TransportPdtDetail new];
        [detail setValuesForKeysWithDictionary:arrDict];
陈俊俊's avatar
陈俊俊 committed
173
        detail.purchasebillnumber = purchaseBill.billNumber;
陈俊俊's avatar
陈俊俊 committed
174 175 176 177
        detail.productUuid = arrDict[@"product_uuid"];
        detail.productCode = arrDict[@"product_code"];
        detail.productName = arrDict[@"product_name"];
        detail.price = arrDict[@"basePrice"];
陈俊俊's avatar
陈俊俊 committed
178
        detail.packprice = arrDict[@"price"];
Sandy's avatar
Sandy committed
179 180
        detail.transferBaseQty = arrDict[@"shippedBaseQty"];
        detail.transferQty = arrDict[@"shippedQty"];
陈俊俊's avatar
陈俊俊 committed
181
        detail.note = arrDict[@"remark"] != [NSNull null] ? arrDict[@"remark"] : @"无";
Sandy's avatar
Sandy committed
182
        detail.qty = @(detail.receivedQty.doubleValue - detail.shippedQty.doubleValue);
Sandy's avatar
Sandy committed
183
        
陈俊俊's avatar
陈俊俊 committed
184 185 186 187
        [transArr addObject:detail];
    }
    return transArr;
}
陈俊俊's avatar
陈俊俊 committed
188 189 190 191 192 193 194 195 196 197 198
- (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];
199
    
陈俊俊's avatar
陈俊俊 committed
200
}
陈俊俊's avatar
陈俊俊 committed
201

陈俊俊's avatar
陈俊俊 committed
202 203 204
#pragma mark - 布局
- (void)bulidLayout
{
陈俊俊's avatar
陈俊俊 committed
205
    self.selectTextFiled = [[UITextField alloc] initWithFrame:CGRectMake(20,5,ScreenSize.width - 100,TopMargin -10)];
陈俊俊's avatar
陈俊俊 committed
206 207 208
    self.selectTextFiled.textAlignment = NSTextAlignmentLeft;
    self.selectTextFiled.background = [UIImage imageNamed:@"textFiled"];
    self.selectTextFiled.delegate = self;
209
    self.selectTextFiled.placeholder = @"类似采购和商品单号";
陈俊俊's avatar
陈俊俊 committed
210 211 212
    self.selectTextFiled.font = GXF_FIFTEENTEN_SIZE;
    [self.view addSubview:self.selectTextFiled];
    
陈俊俊's avatar
陈俊俊 committed
213 214 215 216 217 218 219 220 221 222 223 224
    
    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
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
    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
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 275
- (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
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
- (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
291
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
陈俊俊's avatar
陈俊俊 committed
292 293 294
    }
    if(self.dataArr.count > 0){
        PurchaseBill *bill = _dataArr[indexPath.row];
295
        [cell setPurchaseBill:bill selectArr:self.indexArr];
陈俊俊's avatar
陈俊俊 committed
296
    }
297
    cell.isTransportIn = self.isTransportIn;
陈俊俊's avatar
陈俊俊 committed
298 299 300
    return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
陈俊俊's avatar
陈俊俊 committed
301 302 303
    //44+38+10 + count* 44
    PurchaseBill *bill = _dataArr[indexPath.row];
    return 102 + bill.products.count * 44;
陈俊俊's avatar
陈俊俊 committed
304 305 306
}
#pragma mark - 按钮确定
- (void)sureClick{
Sandy's avatar
Sandy committed
307 308
    
    
309
    NSMutableDictionary *dicProduct = [NSMutableDictionary dictionary];
Sandy's avatar
Sandy committed
310
    //把选中的商品和采购单对应,根据单号存储对应的商品
Sandy's avatar
Sandy committed
311 312
    for (PurchaseBill *bill in self.dataArr) {
        for (TransportPdtDetail *detail in bill.products) {
Sandy's avatar
Sandy committed
313
            detail.purchasebillnumber = bill.billNumber;
Sandy's avatar
Sandy committed
314
            if ([self.indexArr containsObject:detail]) {
315
                NSMutableArray *arrProduct = [dicProduct objectForKey:bill.billNumber];
Sandy's avatar
Sandy committed
316 317
                if (!arrProduct) {
                    arrProduct = [NSMutableArray array];
318
                    [dicProduct setObject:arrProduct forKey:bill.billNumber];
Sandy's avatar
Sandy committed
319 320 321 322
                }
                
                [arrProduct addObject:detail];
            }
陈俊俊's avatar
陈俊俊 committed
323
        }
陈俊俊's avatar
陈俊俊 committed
324
    }
Sandy's avatar
Sandy committed
325
    
326
    NSArray *array = dicProduct.allKeys;
Sandy's avatar
Sandy committed
327 328 329 330
    if (array.count == 0) {
        ShowMessage(@"请选择商品!");
        return;
    }
331
    
Sandy's avatar
Sandy committed
332
//    if (!self.isTransportIn) {
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
        //库存足够时,把临时数据放入正式的缓存数据中
        for (NSString *key in dicProduct.allKeys) {
            NSMutableArray *arrTemp = [dicProduct objectForKey:key];
            NSMutableArray *arrData = [self.dicProduct objectForKey:key];
            if (!arrData) {
                arrData = [NSMutableArray array];
                [self.dicProduct setObject:arrData forKey:key];
            }
            [arrData addObjectsFromArray:arrTemp];
        }
        
        [self PopViewControllerAnimated:YES];
        NSMutableArray*arr = [NSMutableArray array];
        for (TransportPdtDetail *detail in self.indexArr) {
            detail.purchasePdtDetail = detail.uuid;
            detail.uuid = nil;
349 350
            detail.baseQty = [CalculateHelper calculateNum1:detail.qpc num2:detail.qty type:CalculateTypeMul roundingType:NSRoundBankers cutLenth:4];
            detail.total = [CalculateHelper calculateNum1:detail.qty num2:detail.packprice type:(CalculateTypeMul) roundingType:NSRoundBankers cutLenth:4];
351 352
            detail.checkPrice = detail.price;
            detail.checkTotal = detail.total;
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
            [arr addObject:detail];
        }
        
        if (self.getProchaseProduct) {
            self.getProchaseProduct(arr);
        }
        
        for (PurchaseBill *bill in self.dataArr) {
            if ([array containsObject:bill.billNumber]) {
                if (self.blockFirstWarehouse) {
                    self.blockFirstWarehouse(@[bill]);
                }
                break;
            }
        }
陈俊俊's avatar
陈俊俊 committed
368
}
Sandy's avatar
Sandy committed
369 370 371 372 373 374

- (void)stockValidWithDic:(NSMutableDictionary *)dic billNumbers:(NSArray *)billNumbers complete:(void (^)(void))complete {
    NSString *billNum = billNumbers[purchaseStockCheckNumber];
    NSMutableArray *arrProducts = [dic objectForKey:billNum];
    __weak TransportPurchaseViewController *weakSelf = self;
    [HTTP purchaseStockWithPurchaseUuid:billNum success:^(id succ) {
375
        
Sandy's avatar
Sandy committed
376
        if (![succ[@"data"] isKindOfClass:[NSArray class]]) {
377
            [IBTLoadingView hideHUDWithText:@""];
378
            NSString *msg = [NSString stringWithFormat:@"采购单<%@>在总部系统的库存不足!", billNum];
379
            purchaseStockCheckNumber = 0;
Sandy's avatar
Sandy committed
380
            ShowMessage(msg);
Sandy's avatar
Sandy committed
381 382 383
            return ;
        }
        
Sandy's avatar
Sandy committed
384 385 386 387
        for (NSDictionary *dict in succ[@"data"]) {
            ProductStockModel *model = [ProductStockModel new];
            [model setValuesForKeysWithDictionary:dict];
            for (TransportPdtDetail *detail in arrProducts) {
Sandy's avatar
Sandy committed
388 389
                if ([detail.productCode isEqualToString:model.productCode]) {
                    
Sandy's avatar
Sandy committed
390
                    if ([detail.baseQty compare:decimalNumberWithDouble(model.qty)] == NSOrderedDescending) {
391
                        [IBTLoadingView hideHUDWithText:@""];
Sandy's avatar
Sandy committed
392 393
                        CLog(@"库存不足");
                        purchaseStockCheckNumber = 0;
394
                        NSString *msg = [NSString stringWithFormat:@"采购单<%@>的商品%@在总部系统的库存不足!", billNum, detail.productName];
Sandy's avatar
Sandy committed
395 396 397
                        ShowMessage(msg);
                        return ;
                    }
Sandy's avatar
Sandy committed
398 399 400 401 402 403 404 405 406 407 408
                }
            }
        }
        
        purchaseStockCheckNumber += 1;
        if (purchaseStockCheckNumber == billNumbers.count) {
            purchaseStockCheckNumber = 0;
            complete();
        }else{
            [weakSelf stockValidWithDic:dic billNumbers:billNumbers complete:complete];
        }
409
        
Sandy's avatar
Sandy committed
410
    } failure:^(id fail) {
411
        [IBTLoadingView hideHUDWithText:@""];
Sandy's avatar
Sandy committed
412 413 414 415
        purchaseStockCheckNumber = 0;
    }];
}

Sandy's avatar
Sandy committed
416 417 418 419 420 421 422
- (NSMutableDictionary *)dicProduct {
    if (!_dicProduct) {
        _dicProduct = [NSMutableDictionary dictionary];
    }
    return _dicProduct;
}

Sandy's avatar
Sandy committed
423

陈俊俊's avatar
陈俊俊 committed
424 425 426 427 428 429
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
430 431 432 433 434 435 436 437
 #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.
 }
 */
陈俊俊's avatar
陈俊俊 committed
438 439

@end