Commit 1c2a34b2 authored by liboyang's avatar liboyang

更新页面

parent 2ef584ff
...@@ -153,7 +153,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule']) ...@@ -153,7 +153,7 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success(response.data) success(response.data)
}) })
}, },
uploadExcelFile:function(fd,success){ uploadExcelFile:function(startDate,endDate,fd,success){
$http({ $http({
method: 'POST', method: 'POST',
url: "../ReadExcel/ReadPersonPost", url: "../ReadExcel/ReadPersonPost",
...@@ -172,6 +172,62 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule']) ...@@ -172,6 +172,62 @@ angular.module('AvatarCheck.http', ['ngDialog', 'LocalStorageModule'])
success(response.data) success(response.data)
}) })
},
selectXmlPackage:function(date,state,success){
$http({
method: 'GET',
url: "../selectXMLApi/selectXml"+urlTimeStamp(),
params:{
date:date,
state:state
}
}).then(function successCallback(response) {
success(response.data)
})
},
selectPostPackage:function(fileName,state,success){
$http({
method: 'GET',
url: "../selectExcelApi/selectExcel"+urlTimeStamp(),
params:{
fileName:fileName,
state:state
}
}).then(function successCallback(response) {
success(response.data)
})
},
selectXmlData:function(uploadNo,idCard,name,packageNo,importDate,
typeCode,packageType,orderStartDate,orderEndDate,success){
$http({
method: 'GET',
url: "../selectDetailedInformation/selectDetailedInfo"+urlTimeStamp(),
params:{
uploadNo:uploadNo,
idCard:idCard,
name:name,
packageNo:packageNo,
readDate:importDate,
cardType:typeCode,
packageType:packageType,
startDate:orderStartDate,
endDate:orderEndDate
}
}).then(function successCallback(response) {
success(response.data)
})
},
selectAnalyseLog:function(oldPackageName,date,success){
$http({
method: 'GET',
url: "../ParsingLogApi/selectParsingLog"+urlTimeStamp(),
params:{
date:date,
oldPackageData:oldPackageName
}
}).then(function successCallback(response) {
success(response.data)
})
} }
} }
}); });
\ No newline at end of file
...@@ -35,9 +35,9 @@ ...@@ -35,9 +35,9 @@
<div class="box-primary" style="padding: 15px;padding-top: 0;"> <div class="box-primary" style="padding: 15px;padding-top: 0;">
<table class="table table-bordered" style="margin-bottom: 0;"> <table class="table table-bordered" style="margin-bottom: 0;">
<tr> <tr>
<td>始包数据:</td> <td>包名:</td>
<td> <td>
<input type="text" class="form-control" placeholder="原始包数据"/> <input type="text" class="form-control" placeholder="原包名" ng-model="oldPackageName"/>
</td> </td>
<td> <td>
解析时间 解析时间
...@@ -51,16 +51,18 @@ ...@@ -51,16 +51,18 @@
</div> </div>
</td> </td>
<td> <td>
<button class="btn btn-primary">查询</button> <button class="btn btn-primary" ng-click="getAnalyseLog()">查询</button>
</td> </td>
</tr> </tr>
</table> </table>
<table class="table table-bordered table-hover postTable"> <table class="table table-bordered table-hover postTable" ng-if="analyseLog">
<thead> <thead>
<tr> <tr>
<th>NO.</th> <th>NO.</th>
<th>原数据包名</th> <th>原数据包名</th>
<th>记录数</th> <th>记录数</th>
<th>订单起始日期</th>
<th>订单截止日期</th>
<th>格口文件名</th> <th>格口文件名</th>
<th>解析时间</th> <th>解析时间</th>
<th>普通证</th> <th>普通证</th>
...@@ -68,44 +70,21 @@ ...@@ -68,44 +70,21 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr ng-repeat="item in analyseLog">
<td>1</td> <td>{{$index+1}}</td>
<td>123420190302001</td> <td>{{item.oldPackageName}}</td>
<td>300</td> <td>{{item.count}}</td>
<td>格口信息.xls</td> <td>{{item.recordNumber}}</td>
<td>20190302</td> <td>{{item.countyNo}}</td>
<td>200</td> <td>{{item.fileName}}</td>
<td>150</td> <td>{{item.parsingDate}}</td>
</tr> <td>{{item.commonCardCount}}</td>
<tr> <td>{{item.postCardCount}}</td>
<td>2</td>
<td>123420190302002</td>
<td>300</td>
<td>格口信息.xls</td>
<td>20190301</td>
<td>50</td>
<td>250</td>
</tr>
<tr ng-repeat="item in postMsgDetail">
<td>
<input ng-if="$index==0" type="radio" name="r1" class="minimal" value="{{item.id}}" ng-click="changeIndex($index)" checked="checked">
<input ng-if="$index!=0" type="radio" name="r1" class="minimal" value="{{item.id}}" ng-click="changeIndex($index)">
</td>
<td>{{item.id}}</td>
<td>{{item.ddh}}</td>
<td>{{item.yjh}}</td>
<td>{{item.fxyjh}}</td>
<td>{{item.sbsll}}</td>
<td>{{item.sjrxm}}</td>
<td>{{item.sjrlxfs}}</td>
<td>{{item.sjrdz}}</td>
<td>{{item.sqrxm}}</td>
<td>{{item.printTime | date:'yyyy-MM-dd hh:mm:ss'}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<div style="padding-left: 27%;"> <div style="padding-left: 27%;" ng-if="analyseLog">
<tm-pagination conf="paginationConf" class="ul"></tm-pagination> <tm-pagination conf="paginationConf" class="ul"></tm-pagination>
</div> </div>
</div> </div>
......
...@@ -30,6 +30,12 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa ...@@ -30,6 +30,12 @@ angular.module('AvatarCheck.analysisLog', ['ngRoute', 'AvatarCheck.http', 'tm.pa
}; };
$scope.paginationConf.totalItems = 50; $scope.paginationConf.totalItems = 50;
$scope.getAnalyseLog = function(){
HttpService.selectAnalyseLog($scope.oldPackageName,$("#datepicker").val(),function(data){
$scope.analyseLog = data;
console.log($scope.analyseLog)
})
}
}); });
...@@ -38,15 +38,15 @@ ...@@ -38,15 +38,15 @@
<table class="table table-bordered" style="margin-bottom: 0;"> <table class="table table-bordered" style="margin-bottom: 0;">
<tr> <tr>
<td>上传受理号:</td> <td>上传受理号:</td>
<td><input type="text" class="form-control" ng-model="applicantName" placeholder="上传受理号"></td> <td><input type="text" class="form-control" ng-model="uploadNo" placeholder="上传受理号"></td>
<td>身份证号:</td> <td>身份证号:</td>
<td><input type="text" class="form-control" ng-model="orderNo" placeholder="身份证号"></td> <td><input type="text" class="form-control" ng-model="idCard" placeholder="身份证号"></td>
<td>姓名:</td> <td>姓名:</td>
<td><input type="text" class="form-control" ng-model="number" placeholder="姓名"></td> <td><input type="text" class="form-control" ng-model="name" placeholder="姓名"></td>
</tr> </tr>
<tr> <tr>
<td>包号:</td> <td>包号:</td>
<td><input type="text" class="form-control" ng-model="number" placeholder="包号"></td> <td><input type="text" class="form-control" ng-model="packageNo" placeholder="包号"></td>
<td>导入日期:</td> <td>导入日期:</td>
<td> <td>
<div class="input-group date"> <div class="input-group date">
...@@ -96,14 +96,14 @@ ...@@ -96,14 +96,14 @@
</table> </table>
</div> </div>
<div class="box-footer" style="text-align: right;padding-bottom: 0;"> <div class="box-footer" style="text-align: right;padding-bottom: 0;">
<button class="btn btn-primary" ng-click="doQuery()">查询</button> <button class="btn btn-primary" ng-click="doXmlQuery()">查询</button>
<button type="submit" class="btn btn-danger" ng-click="downloadXml()">删除</button> <button type="submit" class="btn btn-danger" ng-click="downloadXml()">删除</button>
</div> </div>
</div> </div>
<div class="box box-default"> <div class="box box-default">
<strong class="box-header">查询结果</strong> <strong class="box-header">查询结果</strong>
<div class="box-info" style="padding: 10px;"> <div class="box-info" style="padding: 10px;">
<table class="table table-bordered table-hover"> <table class="table table-bordered table-hover" ng-if="xmlDatas">
<thead> <thead>
<tr> <tr>
<th>NO.</th> <th>NO.</th>
...@@ -117,50 +117,19 @@ ...@@ -117,50 +117,19 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr ng-repeat="item in xmlDatas">
<td>1</td> <td>{{$index+1}}</td>
<td>11020</td> <td>{{item.countyNo}}</td>
<td>11020180227001</td> <td>{{item.oldPackageNo}}</td>
<td>80</td> <td>{{item.recordNumber}}</td>
<td>30</td> <td>{{item.postNumber}}</td>
<td></td> <td>{{item.unpackedNumber}}</td>
<td>20190228</td> <td>{{item.readDate}}</td>
<td>20190228</td> <td>{{item.analysisDate}}</td>
</tr>
<tr>
<td>2</td>
<td>11020</td>
<td>11020190228002</td>
<td>80</td>
<td>30</td>
<td></td>
<td>20190301</td>
<td>20190301</td>
</tr>
<tr>
<td>3</td>
<td>11020</td>
<td>11020190228003</td>
<td>80</td>
<td></td>
<td>80</td>
<td>20190301</td>
<td></td>
</tr>
<tr ng-repeat="item in postData | orderBy:item.id" ng-click="showDetail(item)" style="cursor: pointer;">
<td>{{item.id}}</td>
<td>{{item.ddh}}</td>
<td>{{item.yjh}}</td>
<td>{{item.fxyjh}}</td>
<td>{{item.sbsll}}</td>
<td>{{item.sqrxm}}</td>
<td>{{item.sjrlxfs}}</td>
<td>{{item.sjrdz}}</td>
<td>{{item.printTime | date:"yyyy-MM-dd hh:mm:ss"}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<div style="padding-left: 27%;"> <div style="padding-left: 27%;" ng-if="xmlDatas">
<tm-pagination conf="paginationConf" class="ul"></tm-pagination> <tm-pagination conf="paginationConf" class="ul"></tm-pagination>
</div> </div>
<h3 ng-if="postData.length==0">暂无记录。</h3> <h3 ng-if="postData.length==0">暂无记录。</h3>
......
...@@ -53,4 +53,13 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http']) ...@@ -53,4 +53,13 @@ angular.module('AvatarCheck.cardProdUpdate', ['ngRoute', 'AvatarCheck.http'])
}; };
$scope.paginationConf.totalItems = 50; $scope.paginationConf.totalItems = 50;
$scope.doXmlQuery = function() {
console.log($scope.uploadNo,$scope.idCard,$scope.name,$scope.packageNo,$("#datepicker1").val(),$scope.typeCode,$scope.packageType,$("#datepicker2").val(),$("#datepicker3").val())
HttpService.selectXmlData($scope.applicantName,$scope.orderNo,$scope.name,$scope.packageNo,$("#datepicker1").val(),
$scope.typeCode,$scope.packageType,$("#datepicker2").val(),$("#datepicker3").val(),function(data) {
$scope.xmlDatas = data;
console.log($scope.xmlDatas)
})
}
}); });
\ No newline at end of file
...@@ -89,11 +89,11 @@ ...@@ -89,11 +89,11 @@
</select> </select>
</td> </td>
<td> <td>
<button class="btn btn-primary">查询</button> <button class="btn btn-primary" ng-click="getPostPackage()">查询</button>
</td> </td>
</tr> </tr>
</table> </table>
<table class="table table-bordered table-hover postTable"> <table class="table table-bordered table-hover postTable" ng-if="postPackageData">
<thead> <thead>
<tr> <tr>
<th>NO.</th> <th>NO.</th>
...@@ -106,48 +106,20 @@ ...@@ -106,48 +106,20 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr ng-repeat="item in postPackageData">
<td>1</td> <td>{{$index+1}}</td>
<td>20190221</td> <td>{{item.beginDate}}</td>
<td>20190228</td> <td>{{item.deadline}}</td>
<td>格口导出.excel</td> <td>{{item.fileName}}</td>
<td>20190227</td> <td>{{item.uploadDate}}</td>
<td>未解析</td> <td>{{item.state}}</td>
<td>
<button class="btn btn-danger">删除</button>
</td>
</tr>
<tr>
<td>2</td>
<td>20190221</td>
<td>20190228</td>
<td>格口导出.excel</td>
<td>20190227</td>
<td>已解析</td>
<td> <td>
<button class="btn btn-danger">删除</button> <button class="btn btn-danger">删除</button>
</td> </td>
</tr> </tr>
<tr ng-repeat="item in postMsgDetail">
<td>
<input ng-if="$index==0" type="radio" name="r1" class="minimal" value="{{item.id}}" ng-click="changeIndex($index)" checked="checked">
<input ng-if="$index!=0" type="radio" name="r1" class="minimal" value="{{item.id}}" ng-click="changeIndex($index)">
</td>
<td>{{item.id}}</td>
<td>{{item.ddh}}</td>
<td>{{item.yjh}}</td>
<td>{{item.fxyjh}}</td>
<td>{{item.sbsll}}</td>
<td>{{item.sjrxm}}</td>
<td>{{item.sjrlxfs}}</td>
<td>{{item.sjrdz}}</td>
<td>{{item.sqrxm}}</td>
<td>{{item.printTime | date:'yyyy-MM-dd hh:mm:ss'}}</td>
</tr>
</tbody> </tbody>
</table> </table>
<div style="padding-left: 27%;"> <div style="padding-left: 27%;" ng-if="postPackageData">
<tm-pagination conf="paginationConf" class="ul"></tm-pagination> <tm-pagination conf="paginationConf" class="ul"></tm-pagination>
</div> </div>
<h3 ng-if="postMsgDetail.length==0">暂无记录。</h3> <h3 ng-if="postMsgDetail.length==0">暂无记录。</h3>
......
...@@ -48,6 +48,8 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm ...@@ -48,6 +48,8 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm
$scope.uploadExcel = function () { $scope.uploadExcel = function () {
var fd = new FormData(); var fd = new FormData();
var files = document.querySelector('input#id_file_photo_for_check').files; var files = document.querySelector('input#id_file_photo_for_check').files;
fd.append("formStartTime",$("#datepicker1").val());
fd.append("formDeadline",$("#datepicker2").val());
for(var i in files){ for(var i in files){
fd.append('file', files[i]); fd.append('file', files[i]);
} }
...@@ -56,11 +58,19 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm ...@@ -56,11 +58,19 @@ angular.module('AvatarCheck.excelAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm
MessageService.showAlert("请选择上传的文件...") MessageService.showAlert("请选择上传的文件...")
}else{ }else{
fd.append('file', files); fd.append('file', files);
HttpService.uploadExcelFile(fd,function (data) { HttpService.uploadExcelFile($("#datepicker1").val(),$("#datepicker2").val(),fd,function (data) {
console.log("导入项目的返回结果:",data) console.log("导入项目的返回结果:",data)
}) })
} }
} }
$scope.getPostPackage = function(){
console.log($scope.fileName,$scope.state)
HttpService.selectPostPackage($scope.fileName,$scope.state,function(data){
$scope.postPackageData = data;
console.log($scope.postPackageData)
})
}
}); });
\ No newline at end of file
<section class="content-header" style="padding-top: 1px;"> <section class="content-header" style="padding-top: 1px;">
<h4> <h4>
<div style="text-align: left;cursor:pointer;"><a ng-click="goBack()"><i class="fa fa-backward"></i> 完成返回</a></div> <div style="text-align: left;cursor:pointer;"><a ng-click="goBack()"><i class="fa fa-backward"></i> 返回</a></div>
</h4> </h4>
</section> </section>
<div style="padding: 15px;"> <div style="padding: 15px;">
...@@ -9,46 +9,83 @@ ...@@ -9,46 +9,83 @@
查询结果 查询结果
</strong> </strong>
<div class="box-info" style="padding: 10px;"> <div class="box-info" style="padding: 10px;">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">
任务单
</h3>
</div>
<div class="panel-body">
<table class="table table-hover table-bordered">
<thead>
<th>任务单流水号</th>
<th>区县</th>
<th>制证类型</th>
<th>日期</th>
<th>数据核验</th>
<th>膜打印</th>
<th>预定位</th>
<th>分拣</th>
<th>质检</th>
<th>仓库</th>
</thead>
<tbody>
<tr>
<td>20190228001</td>
<td>海淀区</td>
<td>普通证</td>
<td>20190221</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="panel panel-info"> <div class="panel panel-info">
<div class="panel-heading"> <div class="panel-heading">
<h3 class="panel-title"> <h3 class="panel-title">
证件信息 受理库
</h3> </h3>
</div> </div>
<div class="panel-body" style="padding-bottom: 0;"> <div class="panel-body" style="padding-bottom: 0;">
<table class="table table-hover"> <table class="table table-hover table-bordered">
<thead> <thead>
<tr> <tr>
<th>地区</th>
<th>受理号</th> <th>受理号</th>
<th>区县</th>
<th>姓名</th> <th>姓名</th>
<th>制证类型</th> <th>制证类型</th>
<th>身份证号</th> <th>身份证号</th>
<th>性别</th> <th>性别</th>
<th>出生日期</th>
<th>签发机关</th> <th>签发机关</th>
<th>起始有效期</th> <th>起始有效期</th>
<th>终止有效期</th> <th>终止有效期</th>
<th>证件状态</th>
<th>上报受理单位</th> <th>上报受理单位</th>
<th>证件状态</th> <th>数据状态</th>
<th>时间</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>海淀区</td>
<td>02213546871</td> <td>02213546871</td>
<td>海淀区</td>
<td>伯阳</td> <td>伯阳</td>
<td>普通证</td> <td>普通证</td>
<td>130133199405250011</td> <td>130133199405250011</td>
<td></td> <td></td>
<td>19940525</td>
<td>赵县公安局</td> <td>赵县公安局</td>
<td>20090228</td> <td>20090228</td>
<td>20190228</td> <td>20190228</td>
<td>已出库</td>
<td>赵县派出所</td> <td>赵县派出所</td>
<td>快证</td> <td>快证</td>
<td>2019-03-03 13:58:30</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -62,47 +99,48 @@ ...@@ -62,47 +99,48 @@
<div class="panel panel-info"> <div class="panel panel-info">
<div class="panel-heading"> <div class="panel-heading">
<h3 class="panel-title"> <h3 class="panel-title">
循环单信息 制证库
</h3> </h3>
</div> </div>
<div class="panel-body"> <div class="panel-body">
<table class="table table-hover"> <table class="table table-hover table-bordered">
<thead> <thead>
<th>编号</th> <tr>
<th>地区</th> <th>受理号</th>
<th>区县</th>
<th>姓名</th>
<th>制证类型</th> <th>制证类型</th>
<th>日期</th> <th>身份证号</th>
<th>工序</th> <th>性别</th>
<th>操作时间</th> <th>签发机关</th>
<th>机器号</th> <th>起始有效期</th>
<th>出库时间</th> <th>终止有效期</th>
<th>入库时间</th> <th>上报受理单位</th>
<th>数据状态</th>
<th>时间</th>
</tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<td>20190228001</td> <td>02213546871</td>
<td>海淀区</td> <td>海淀区</td>
<td>伯阳</td>
<td>普通证</td> <td>普通证</td>
<td>20190221</td> <td>130133199405250011</td>
<td>仓库</td> <td></td>
<td>赵县公安局</td>
<td>20090228</td>
<td>20190228</td> <td>20190228</td>
<td>1</td> <td>赵县派出所</td>
<td>20190226</td> <td>快证</td>
<td>20190227</td> <td>2019-03-03 13:58:30</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div> </div>
</div> <div style="text-align:right;padding: 10px;padding-top: 0;">
<button class="btn btn-info">添加快证</button>
<div class="panel panel-info"> <button class="btn btn-danger">退证</button>
<div class="panel-heading">
<h3 class="panel-title">
组号信息
</h3>
</div>
<div class="panel-body">
</div> </div>
</div> </div>
......
...@@ -72,11 +72,11 @@ ...@@ -72,11 +72,11 @@
</select> </select>
</td> </td>
<td> <td>
<button class="btn btn-primary">查询</button> <button class="btn btn-primary" ng-click="getXmlPackage()">查询</button>
</td> </td>
</tr> </tr>
</table> </table>
<table class="table table-bordered table-hover postTable"> <table class="table table-bordered table-hover postTable" ng-if="xmlPackageData">
<thead> <thead>
<tr> <tr>
<th>NO.</th> <th>NO.</th>
...@@ -89,50 +89,21 @@ ...@@ -89,50 +89,21 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr ng-repeat="item in xmlPackageData">
<td>1</td> <td>{{$index}}</td>
<td>20190301</td> <td>{{item.uploadDate}}</td>
<td>300</td> <td>{{item.packageCount}}</td>
<td>24000</td> <td>{{item.cardCount}}</td>
<td></td> <td>{{item.commonCardCount}}</td>
<td></td> <td>{{item.postCardCount}}</td>
<td> <td>
<button class="btn btn-primary" ng-click="analysis()">解析</button> <button class="btn btn-primary" ng-click="analysis()">解析</button>
<button class="btn btn-danger">删除</button> <button class="btn btn-danger">删除</button>
</td> </td>
</tr> </tr>
<tr>
<td>2</td>
<td>20190228</td>
<td>100</td>
<td>8000</td>
<td>8000</td>
<td>0</td>
<td>
<button class="btn btn-primary" ng-click="analysis()">解析</button>
<button class="btn btn-danger">删除</button>
</td>
</tr>
<tr ng-repeat="item in postMsgDetail">
<td>
<input ng-if="$index==0" type="radio" name="r1" class="minimal" value="{{item.id}}" ng-click="changeIndex($index)" checked="checked">
<input ng-if="$index!=0" type="radio" name="r1" class="minimal" value="{{item.id}}" ng-click="changeIndex($index)">
</td>
<td>{{item.id}}</td>
<td>{{item.ddh}}</td>
<td>{{item.yjh}}</td>
<td>{{item.fxyjh}}</td>
<td>{{item.sbsll}}</td>
<td>{{item.sjrxm}}</td>
<td>{{item.sjrlxfs}}</td>
<td>{{item.sjrdz}}</td>
<td>{{item.sqrxm}}</td>
<td>{{item.printTime | date:'yyyy-MM-dd hh:mm:ss'}}</td>
</tr>
</tbody> </tbody>
</table> </table>
<div style="padding-left: 27%;"> <div style="padding-left: 27%;" ng-if="xmlPackageData">
<tm-pagination conf="paginationConf" class="ul"></tm-pagination> <tm-pagination conf="paginationConf" class="ul"></tm-pagination>
</div> </div>
<h3 ng-if="postMsgDetail.length==0">暂无记录。</h3> <h3 ng-if="postMsgDetail.length==0">暂无记录。</h3>
......
...@@ -65,5 +65,13 @@ angular.module('AvatarCheck.xmlAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm.p ...@@ -65,5 +65,13 @@ angular.module('AvatarCheck.xmlAndSearch', ['ngRoute', 'AvatarCheck.http', 'tm.p
} }
} }
$scope.getXmlPackage = function(){
console.log($("#datepicker").val(),$scope.state)
HttpService.selectXmlPackage($("#datepicker").val(),$scope.state,function(data){
$scope.xmlPackageData = data;
console.log($scope.xmlPackageData)
})
}
}); });
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment