TopTransferView.m 11.9 KB
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//
//  TopTransferView.m
//  XFFruit
//
//  Created by 陈俊俊 on 15/9/28.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "TopTransferView.h"


#import "SurveyCell.h"
#import "Warehouse.h"
#import "ChooseWarehouseViewController.h"
#import "ChooseTypeViewController.h"
#define LeftMargin 15
#define TopMargin 20
#define LeftWidth 80
#define TableHeight 44
#define SpaceHeight 10

陈俊俊's avatar
陈俊俊 committed
22
@interface TopTransferView ()<UITableViewDataSource,UITableViewDelegate,HPGrowingTextViewDelegate,UITextFieldDelegate,FinishTimeViewDelegate>
陈俊俊's avatar
陈俊俊 committed
23 24 25
{
    UITableView *_tableView;
    NSMutableArray *_dataArr;
陈俊俊's avatar
陈俊俊 committed
26

陈俊俊's avatar
陈俊俊 committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
}
@property (nonatomic,strong)NSString *selectType;
@property (nonatomic,strong)NSString *selectRwarehouse;
@property (nonatomic,strong)NSString *selectWarehouse;
@end


@implementation TopTransferView
- (instancetype)initWithFrame:(CGRect)frame{
    self = [super initWithFrame:frame];
    if (self) {
        //界面
        [self bulidLayout];
    }
    return self;
}

#pragma mark - 布局
- (void)bulidLayout
{
    self.backgroundColor  = XXFBgColor;
    _dataArr = [NSMutableArray array];
陈俊俊's avatar
陈俊俊 committed
49
    NSArray *arr = @[@"发货仓库:",@"收货仓库:",@"运输类型:",@"车辆:",@"司机电话:",@"预计到货时间:",@"备注:"];
陈俊俊's avatar
陈俊俊 committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
    [_dataArr addObjectsFromArray:arr];
    
    _tableView = [[UITableView alloc]initWithFrame:(CGRectMake(0, TopMargin,self.frame.size.width, self.frame.size.height - TopMargin)) style:(UITableViewStylePlain)];
    _tableView.backgroundColor = [UIColor whiteColor];
    _tableView.bounces = NO;
    _tableView.delegate = self;
    _tableView.dataSource = self;
    [self addSubview:_tableView];
}
#pragma mark - 协议方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return _dataArr.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"cellID";
    SurveyCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
        cell = [[SurveyCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
        tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        cell.selectionStyle = UITableViewCellSelectionStyleNone;
陈俊俊's avatar
陈俊俊 committed
73
        if (indexPath.row ==0 || indexPath.row == 1 || indexPath.row == 2 || indexPath.row == 5) {
陈俊俊's avatar
陈俊俊 committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
            cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
        }
        [self createViewInCell:cell indexPath:indexPath];
    }
    [cell setTitleStr:_dataArr[indexPath.row]];
    return cell;
}
-  (void)createViewInCell:(SurveyCell *)cell indexPath:(NSIndexPath *)indexPath{
    if (indexPath.row == 3 || indexPath.row == 4) {
        UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(100+LeftMargin, 0, ScreenSize.width - 100 - LeftMargin*2-10, TableHeight)];
        textField.textAlignment = NSTextAlignmentRight;
        textField.textColor = GXF_CONTENT_COLOR;
        textField.font = GXF_FIFTEENTEN_SIZE;
        textField.returnKeyType = UIReturnKeyDone;
        textField.delegate = self;
        [cell.contentView addSubview:textField];
        if (indexPath.row == 3) {
            self.carTextFiled = textField;
            self.carTextFiled.placeholder = @"请输入车辆";
        }else if(indexPath.row == 4){
            textField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
            textField.returnKeyType = UIReturnKeyDone;
            self.phoneTextFiled = textField;
            self.phoneTextFiled.placeholder = @"请输入司机电话";
        }
        
    }else if (indexPath.row == _dataArr.count -1){
        self.remarkTextView = [[HPGrowingTextView alloc] initWithFrame:CGRectMake(100+LeftMargin, 0, ScreenSize.width - 100 - LeftMargin*2-10, TableHeight)];
        self.remarkTextView.contentInset = UIEdgeInsetsMake(5, 5, 5, 0);
        self.remarkTextView.minNumberOfLines = 1;
        self.remarkTextView.maxNumberOfLines = 1;
        self.remarkTextView.isScrollable = YES;
        self.remarkTextView.font = GXF_FIFTEENTEN_SIZE;
        self.remarkTextView.textAlignment = NSTextAlignmentRight;
        self.remarkTextView.delegate = self;
        self.remarkTextView.returnKeyType = UIReturnKeyDone;
        self.remarkTextView.placeholder = @"输入备注内容";
        [cell.contentView addSubview:self.remarkTextView];
    }else{
        UILabel *contentLabel = [[UILabel alloc]initWithFrame:(CGRectMake(100+LeftMargin, 0, ScreenSize.width - 100 - LeftMargin*2-10, TableHeight))];
        contentLabel.textAlignment= NSTextAlignmentRight;
        contentLabel.textColor = GXF_PLACEHOLDER_COLOR;
        contentLabel.font = GXF_FIFTEENTEN_SIZE;
        [cell.contentView addSubview:contentLabel];
        if (indexPath.row == 0) {
            contentLabel.text = @"选择发货仓库";
            self.warehouseLabel = contentLabel;
            
        }else if(indexPath.row == 1){
            contentLabel.text = @"选择收货仓库";
            self.rwarehouseLabel = contentLabel;
            
        }else if(indexPath.row == 2){
            contentLabel.text = @"选择类型";
            self.typeLabel = contentLabel;
            
陈俊俊's avatar
陈俊俊 committed
130 131 132
        }else if(indexPath.row == 5){
            contentLabel.text = @"选择预计到货时间";
            self.arriveDateLabel = contentLabel;
陈俊俊's avatar
陈俊俊 committed
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 161 162 163 164 165 166 167 168
        }
    }
}
- (void)setTransfer:(Transfer *)transfer{
    if (transfer) {
        if (transfer.warehouseName.length > 0) {
            self.warehouseLabel.text = transfer.warehouseName;
            self.warehouseLabel.textColor = GXF_CONTENT_COLOR;
            self.warehouseCode = transfer.warehouseCode;
            self.warehouseName = transfer.warehouseName;
            self.warehouseUuid = transfer.warehouseUuid;
            self.selectWarehouse = transfer.warehouseUuid;
        }
        if (transfer.type.length > 0) {
            NSString *type = [transfer.type isEqualToString:GXF_Critical] ? @"紧急" : @"普通";
            self.typeLabel.text = type;
            self.typeLabel.textColor = GXF_CONTENT_COLOR;
            self.type = transfer.type;
            self.selectType = transfer.type;
        }
        if (transfer.rwarehouseName.length > 0) {
            self.rwarehouseLabel.text = transfer.rwarehouseName;
            self.rwarehouseLabel.textColor = GXF_CONTENT_COLOR;
            self.rwarehouseCode = transfer.rwarehouseCode;
            self.rwarehouseName = transfer.rwarehouseName;
            self.rwarehouseUuid = transfer.rwarehouseUuid;
            self.selectRwarehouse = transfer.rwarehouseUuid;
        }
        if (transfer.carnumber.length > 0) {
            self.carTextFiled.text = transfer.carnumber;
            self.carnumber = transfer.carnumber;
        }
        if (transfer.carphone) {
            self.phoneTextFiled.text = transfer.carphone;
            self.carphone = transfer.carphone;
        }
陈俊俊's avatar
陈俊俊 committed
169
        if (transfer.arriveDate) {
陈俊俊's avatar
陈俊俊 committed
170 171
            if (transfer.arriveDate.length > 15) {
                _arriveDateLabel.text = [[IBTCommon checkString:transfer.arriveDate]substringToIndex:16];
陈俊俊's avatar
陈俊俊 committed
172 173 174 175
            }
            _arriveDateLabel.textColor = GXF_CONTENT_COLOR;
            self.arriveDate = [IBTCommon checkString:transfer.arriveDate];
        }
陈俊俊's avatar
陈俊俊 committed
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 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 233 234 235 236 237 238 239 240 241
        if (transfer.note) {
            self.remarkTextView.text = transfer.note;
            self.note = transfer.note;
        }
    }
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    if(indexPath.row == 0){
        ChooseWarehouseViewController *cvc = [ChooseWarehouseViewController new];
        if (self.selectWarehouse.length > 0) {
            cvc.selectStr = self.selectWarehouse;
        }
        cvc.choseBaseInfo = ^(NSArray *warehouses){
            if (warehouses.count > 0) {
                Warehouse *warehouse = warehouses[0];
                self.warehouseLabel.text = [NSString stringWithFormat:@"%@[%@]",warehouse.name,warehouse.code];
                self.warehouseLabel.textColor = GXF_CONTENT_COLOR;
                self.warehouseUuid = warehouse.uuid;
                self.warehouseCode = warehouse.code;
                self.warehouseName = warehouse.name;
                self.selectWarehouse = warehouse.uuid;
            }
            
        };
        cvc.isMoreChose = NO;
        [self.delegate pushNextViewController:cvc];
    }else if(indexPath.row == 1){
        ChooseWarehouseViewController *tvc = [[ChooseWarehouseViewController alloc]init];
        if (self.selectRwarehouse.length > 0) {
            tvc.selectStr = self.selectRwarehouse;
        }
        tvc.choseBaseInfo = ^(NSArray *warehouses){
            if (warehouses.count > 0) {
                Warehouse *warehouse = warehouses[0];
                self.rwarehouseLabel.text = [NSString stringWithFormat:@"%@[%@]",warehouse.name,warehouse.code];
                self.rwarehouseLabel.textColor = GXF_CONTENT_COLOR;
                self.rwarehouseUuid = warehouse.uuid;
                self.rwarehouseCode = warehouse.code;
                self.rwarehouseName = warehouse.name;
                self.selectRwarehouse = warehouse.uuid;
                
            }
            
        };
        [self.delegate pushNextViewController:tvc];
    }else if(indexPath.row == 2){
        ChooseTypeViewController *tvc = [[ChooseTypeViewController alloc]init];
        if (self.selectType.length > 0) {
            tvc.selectStr = self.selectType;
        }
        tvc.choseBaseInfo = ^(NSArray *types){
            if (types.count > 0) {
                NSString *type = types[0];
                self.typeLabel.text = type;
                self.selectType = type;
                self.typeLabel.textColor = GXF_CONTENT_COLOR;
                if ([type isEqualToString:@"紧急"]) {
                    self.type = GXF_Critical;
                }else{
                    self.type = GXF_Normal;
                }
            }
            
        };
        [self.delegate pushNextViewController:tvc];
陈俊俊's avatar
陈俊俊 committed
242 243 244 245 246 247
    }else if(indexPath.row == 5){
        [self startDatePickView];
    }
    
}
- (void)startDatePickView{
陈俊俊's avatar
陈俊俊 committed
248 249 250 251 252 253 254 255 256 257 258
    if (!self.startTimeView) {
        NSString *currentStr  = @"";
        if ([self.arriveDateLabel.text isEqualToString:@"选择预计到货时间"] || self.arriveDateLabel.text.length < 1) {
            currentStr = [IBTCommon stringFromDateWithFormat:[NSDate date] format:@"yyyy-MM-dd HH:mm"];
        }else{
            currentStr = self.arriveDateLabel.text;
        }
        self.startTimeView = [[FinishTimeView alloc] initWithFrame:CGRectMake(0, ScreenSize.height, ScreenSize.width, ScreenSize.height - 64) withDate:currentStr];
        self.startTimeView.delegate = self;
        self.startTimeView.backgroundColor        = RGBA(0, 0, 0 ,0.5);
        [AppWindow addSubview:self.startTimeView];
陈俊俊's avatar
陈俊俊 committed
259 260
        
        [UIView animateWithDuration:0.15 animations:^{
陈俊俊's avatar
陈俊俊 committed
261
            CGRect startFrame =  self.startTimeView.frame;
陈俊俊's avatar
陈俊俊 committed
262
            startFrame.origin.y =  64;
陈俊俊's avatar
陈俊俊 committed
263
            self.startTimeView.frame = startFrame;
陈俊俊's avatar
陈俊俊 committed
264 265 266
        } completion:^(BOOL finished) {
            
        }];
陈俊俊's avatar
陈俊俊 committed
267
    }
陈俊俊's avatar
陈俊俊 committed
268 269 270 271
}
- (void)cancelTimeView{
    [self clearDatePickView];
}
陈俊俊's avatar
陈俊俊 committed
272
- (void)okTimeView:(NSString *)time withType:(NSString *)type{
陈俊俊's avatar
陈俊俊 committed
273
    
陈俊俊's avatar
陈俊俊 committed
274
    _arriveDateLabel.textColor = GXF_CONTENT_COLOR;
陈俊俊's avatar
陈俊俊 committed
275 276 277
    if (time.length > 15) {
        _arriveDateLabel.text = [time substringToIndex:16];
    }
陈俊俊's avatar
陈俊俊 committed
278
    self.arriveDate = time;
陈俊俊's avatar
陈俊俊 committed
279 280 281 282 283 284
    // 关闭选择器
    [self clearDatePickView];
}
#pragma mark - 取消
- (void)clearDatePickView{
    [UIView animateWithDuration:0.15 animations:^{
陈俊俊's avatar
陈俊俊 committed
285
        CGRect startFrame =  self.startTimeView.frame;
陈俊俊's avatar
陈俊俊 committed
286
        startFrame.origin.y = ScreenSize.height;
陈俊俊's avatar
陈俊俊 committed
287
        self.startTimeView.frame = startFrame;
陈俊俊's avatar
陈俊俊 committed
288
    } completion:^(BOOL finished) {
陈俊俊's avatar
陈俊俊 committed
289 290
        [self.startTimeView removeFromSuperview];
        self.startTimeView = nil;
陈俊俊's avatar
陈俊俊 committed
291
    }];
陈俊俊's avatar
陈俊俊 committed
292 293 294 295 296 297 298 299 300 301 302 303 304
}

- (BOOL)growingTextViewShouldReturn:(HPGrowingTextView *)growingTextView{
    [self.remarkTextView resignFirstResponder];
    return YES;
}
- (BOOL)textFieldShouldReturn:(UITextField *)textField{
    [self.delegate hiddenKeyBoard];
    return YES;
}


@end