| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- //
- // CustomerTraceListVc.m
- // IBOSS
- //
- // Created by 关宏厚 on 2019/4/10.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import "CustomerTraceListVc.h"
- @interface CustomerTraceListVc ()
- @end
- @implementation CustomerTraceListVc
- - (void)viewDidLoad {
- [super viewDidLoad];
- _dataList=[[NSMutableArray alloc]init];
- [self loadNavStyle];
- [self initUI];
- [self initSlideSlip];
- UIView *view = [self backGroundPromptViewByFrame:_vTableView.bounds promptStr:@"请筛选后查询"];
- _vTableView.tableHeaderView = nil;
- _vTableView.backgroundView = view;
-
- }
- /**
- 安全区视图发生变化
- */
- -(void)viewSafeAreaInsetsDidChange{
- _vTableView.frame=CGRectMake(0, 0, Screen_Width, self.view.safeAreaLayoutGuide.layoutFrame.size.height);
- [super viewSafeAreaInsetsDidChange];
- }
- -(void)search{
- [_filterController show];
- }
- /**
- 初始化UI
- */
- -(void)initUI
- {
- _vTableView = [[UITableView alloc]
- initWithFrame:CGRectMake(0,0,
- self.view.frame.size.width,
- Screen_Height)];
-
- _vTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- _vTableView.autoresizingMask = UIViewAutoresizingFlexibleHeight;
- _vTableView.backgroundColor = [UIColor whiteColor];
- _vTableView.delegate = self;
- _vTableView.dataSource=self;
- [self.view addSubview:_vTableView];
-
- }
- /**
- 抽屉初始化
- */
- - (void)initSlideSlip{
- // 抽屉对象
- __weak typeof(self) weakself=self;
- self.filterController = [[SideSlipFilterController alloc] initWithSponsor:self resetBlock:^(NSArray *dataList) {
- for (SideSlipModel *model in dataList) {
-
- //selectedItem
- model.selectedItemList = nil;
- model.customDict = nil;
- }
- } commitBlock:^(NSArray *dataList) {
- // 查询条件
- SideSlipModel *serviceRegionModel = dataList[0];
- self->_searchModel = [serviceRegionModel.customDict objectForKey:CUSTOMER_TRACE_LIST_SEARCH_MODEL];
-
- if(self->_dataList!=nil&&self->_dataList.count>0){
- [self->_dataList removeAllObjects];
- [self->_vTableView reloadData];
- }
-
- if([self->_searchModel.estimateSalesAmountStartDate isEqualToString:@"请选择预估销售金额创建开始日期"]){
- self->_searchModel.estimateSalesAmountStartDate=@"";
-
- }
-
- if([self->_searchModel.estimateSalesAmountEndDate isEqualToString:@"请选择预估销售金额创建结束日期"]){
- self->_searchModel.estimateSalesAmountEndDate=@"";
-
- }
- if(self->_searchModel.estimateSalesAmountStartDate.length>0&&self->_searchModel.estimateSalesAmountEndDate.length>0){
- NSUInteger result= [DateFormat compareDate:self->_searchModel.estimateSalesAmountStartDate withDate:self->_searchModel.estimateSalesAmountEndDate];
- if(result == -1){
- [self showAlertViewText:@"预估销售金额创建开始日期不能大于结束日期"];
- return;
- }
- NSDateFormatter *dateformater = [[NSDateFormatter alloc] init];
- [dateformater setDateFormat:@"yyyy-MM-dd"];
- NSDate *dta = [[NSDate alloc] init];
- NSDate *dtb = [[NSDate alloc] init];
-
- dta = [dateformater dateFromString:self->_searchModel.estimateSalesAmountStartDate];
-
- dtb = [dateformater dateFromString:self->_searchModel.estimateSalesAmountEndDate];
-
- NSInteger days=[DateFormat calculateDaysFromBegin:dta end:dtb];
- if(days>31){
- [self showAlertViewText:@"预估销售金额日期间隔不能超过31天"];
- return;
- }
- }
-
- if([self->_searchModel.accountStartDate isEqualToString:@"请选择账务开始日期"]){
- self->_searchModel.accountStartDate=@"";
-
- }
-
- if([self->_searchModel.accountEndDate isEqualToString:@"请选择账务结束日期"]){
- self->_searchModel.accountEndDate=@"";
-
- }
- if(self->_searchModel.accountStartDate.length>0&&self->_searchModel.accountEndDate.length>0){
- NSUInteger result= [DateFormat compareDate:self->_searchModel.accountStartDate withDate:self->_searchModel.accountEndDate];
- if(result == -1){
- [self showAlertViewText:@"账务开始日期不能大于结束日期"];
- return;
- }
- NSDateFormatter *dateformater = [[NSDateFormatter alloc] init];
- [dateformater setDateFormat:@"yyyy-MM-dd"];
- NSDate *dta = [[NSDate alloc] init];
- NSDate *dtb = [[NSDate alloc] init];
-
- dta = [dateformater dateFromString:self->_searchModel.accountStartDate];
-
- dtb = [dateformater dateFromString:self->_searchModel.accountEndDate];
-
- NSInteger days=[DateFormat calculateDaysFromBegin:dta end:dtb];
- if(days>31){
- [self showAlertViewText:@"账务日期间隔不能超过31天"];
- return;
- }
- }
-
- [weakself.filterController dismiss];
- [self reloadData];
- }];
- _filterController.animationDuration = AnimationDuration;
- _filterController.hasHeadView = YES;
- _filterController.sideSlipLeading = UIScreenSideSlipLeading*[UIScreen mainScreen].bounds.size.width;
- _filterController.dataList = [self packageDataList];
- }
- /**
- 加载数据
- */
- - (void)reloadData
- {
- [self startLoading];
- NSString *urlStr = [NSString stringWithFormat:@"%@", ServerURL];
- NSMutableDictionary *dict = [NSMutableDictionary dictionary];
-
- [dict setObject:@"GetCustomerTrackingIphone" forKey:@"Action"];
-
- [dict setObject:[NSString stringWithFormat:@"%@",kkAccountCode]forKey:@"AccountCode"];
- [dict setObject:kkUserCode forKey:@"UserCode"];
- [dict setObject:kkUserPwd forKey:@"UserPassword"];
- [dict setObject:kkSessionKey forKey:@"SessionKey"];
-
- [dict setObject:_searchModel.organizationCode==nil?@"":_searchModel.organizationCode forKeyedSubscript:@"OrganizationCode"];
-
- [dict setObject:_searchModel.accountStartDate==nil?@"":_searchModel.accountStartDate forKeyedSubscript:@"AccountDateFrom"];
- [dict setObject:_searchModel.accountEndDate==nil?@"":_searchModel.accountEndDate forKeyedSubscript:@"AccountDateTo"];
-
- [dict setObject:_searchModel.estimateSalesAmountStartDate==nil?@"":_searchModel.estimateSalesAmountStartDate forKeyedSubscript:@"CreateDateFrom"];
- [dict setObject:_searchModel.estimateSalesAmountStartDate==nil?@"":_searchModel.estimateSalesAmountStartDate forKeyedSubscript:@"CreateDateTo"];
- _downManager = [[ASIDownManager alloc] init];
- _downManager.delegate = self;
- _downManager.onRequestSuccess = @selector(onLoadFinish:);
- _downManager.onRequestFail = @selector(onLoadFail:);
- [_downManager postHttpRequest:urlStr dic:dict path:nil fileName:nil];
- }
- #pragma mark 委托接口回调函数
- /**
- 调用接口成功回调
-
- @param sender <#sender description#>
- */
- - (void)onLoadFinish:(ASIDownManager *)sender {
- // 取消进度条
- [self cancel];
- // 服务器返回数据
- RequestResultModel *resultModel = [RequestResultModel dk_modelWithJSON:sender.mWebStr];
- // 服务器返回数据状态值
- int iStatus = resultModel.status;
- // 服务器返回数据消息
- NSString *message = resultModel.message;
- _vTableView.backgroundView = nil;
-
- // 服务器返回数据状态值正确
- if (iStatus == 0) {
- NSArray *infoArray = (NSArray *)resultModel.result;
-
- if(infoArray!=nil&&infoArray.count>0){
- for(int i=0;i<infoArray.count;i++){
- NSDictionary *infoDic=[infoArray objectAtIndex:i];
- CustomerTraceListModel *model = [CustomerTraceListModel dk_modelWithDictionary:infoDic];
- [_dataList addObject:model];
- }
- [_vTableView reloadData];
- }
- else{
- _vTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- // 未找到匹配结果
- if(_dataList == nil || _dataList.count == 0){
- _vTableView.backgroundView = [self noDataViewByFrame:_vTableView.bounds];
- [self showAlertViewBackText:@"未找到匹配结果"];
- }
- }
- }
-
- // 服务器返回数据状态值异常
- else if(iStatus == ActionResultStatusAuthError
- ||iStatus == ActionResultStatusNoLogin
- ||iStatus == ActionResultStatusLogined||iStatus==ActionResultSessionOverdue){
-
- [self showReLoginDialog:message];
- }
- else{
- [self showAlertViewText:message];
- return;
- }
- }
- /**
- 调用接口失败回调
-
- @param sender <#sender description#>
- */
- - (void)onLoadFail:(ASIDownManager *)sender {
- [self cancel];
- [_vTableView reloadData];
- [self showAlertViewText:@"网络异常"];
- }
- /**
- 单元格cell个数
- @param tableView <#tableView description#>
- @param section <#section description#>
- @return <#return value description#>
- */
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- return [_dataList count];
- }
- /**
- <#Description#>
-
- @param tableView <#tableView description#>
- @return <#return value description#>
- */
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
- return 1;
- }
- /**
- 高度
-
- @param tableView <#tableView description#>
- @param indexPath <#indexPath description#>
- @return <#return value description#>
- */
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
- return 150;
-
- }
- /**
- 每个单元格cell
-
- @param tableView <#tableView description#>
- @param indexPath <#indexPath description#>
- @return <#return value description#>
- */
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- static NSString *cellIdentifier = @"CustomerTraceListCell";
- CustomerTraceListCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier ];
- if (!cell) {
- cell = [[CustomerTraceListCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
- cell.selectionStyle=UITableViewCellSelectionStyleNone;
- }
- else
- //当页面拉动的时候 当cell存在并且最后一个存在 把它进行删除就出来一个独特的cell我们在进行数据配置即可避免
- {
- while ([cell.contentView.subviews lastObject] != nil) {
- [(UIView *)[cell.contentView.subviews lastObject] removeFromSuperview];
- }
- }
-
- CustomerTraceListModel *traceListModel= [_dataList objectAtIndex:indexPath.row];
- [cell setCustomerTraceListCell:traceListModel];
- return cell;
- }
- /**
- 点击单元格事件
-
- @param tableView tableView description
- @param indexPath indexPath description
- */
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- self.hidesBottomBarWhenPushed=YES;
- CustomerTraceListDetailVc *detailVc = [[CustomerTraceListDetailVc alloc] init];
- CustomerTraceListModel *traceListModel= [_dataList objectAtIndex:indexPath.row];
- detailVc.traceListModel=traceListModel;
- [self.navigationController pushViewController:detailVc animated:YES];
-
- }
- /**
- 进度条隐藏
- */
- - (void)cancel {
- [self stopLoading];
- }
- /**
- 数据源
-
- @return <#return value description#>
- */
- - (NSArray *)packageDataList {
- NSMutableArray *dataArray = [NSMutableArray array];
- SideSlipModel *model = [[SideSlipModel alloc] init];
- model.containerCellClass = @"CustomerTraceListSearchCell";
- model.regionTitle = @"查询条件";
-
- [dataArray addObject:model];
- return [dataArray mutableCopy];
- }
- /**
- 导航按钮样式
- */
- - (void)loadNavStyle {
- self.navigationItem.title = @"客户跟踪表";
- UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
- [button setImage:[UIImage imageNamed:@"icon_back"] forState:UIControlStateNormal];
- [button addTarget:self action:@selector(goBack)
- forControlEvents:UIControlEventTouchUpInside];
- button.frame = CGRectMake(0, 0,45,22);
-
- UIBarButtonItem *menuButton = [[UIBarButtonItem alloc] initWithCustomView:button];
- self.navigationItem.leftBarButtonItem = menuButton;
-
- // 右边
- UIView *v = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 42, 12)];
-
- UIButton *btnfilter = [UIButton buttonWithType:UIButtonTypeCustom];
- [btnfilter addTarget:self action:@selector(search)
- forControlEvents:UIControlEventTouchUpInside];
- btnfilter.frame = CGRectMake(0, 0,16, 16);
- [btnfilter setTitleColor:NavBarItemColor forState:UIControlStateNormal];
- [btnfilter setBackgroundImage:[UIImage imageNamed:@"icon_filter_white"]
- forState:UIControlStateNormal];
- [v addSubview:btnfilter];
- UIButton *filterLbl = [[UIButton alloc]init];
- filterLbl.frame=CGRectMake(CGRectGetMaxX(btnfilter.frame)+3,0,28, 16);
- [filterLbl setTitle:@"筛选" forState:UIControlStateNormal];
- [filterLbl setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
- filterLbl.titleLabel.font = [UIFont systemFontOfSize:ButtonFontOfSize];
- [filterLbl addTarget:self action:@selector(search)
- forControlEvents:UIControlEventTouchUpInside];
- [v addSubview:filterLbl];
- UIBarButtonItem *menubtnAdd = [[UIBarButtonItem alloc] initWithCustomView:v];
- self.navigationItem.rightBarButtonItem = menubtnAdd;
-
- }
- @end
|