Commit 891e2c3b authored by dahai's avatar dahai

Merge remote-tracking branch 'origin/dev' into dev

parents afd49c2a 0084366c
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
ng-model="isPrint"> ng-model="isPrint">
<option value="">--请选择打印状态--</option> <option value="">--请选择打印状态--</option>
<option value="1">已打印</option> <option value="1">已打印</option>
<option value="-1">未打印</option> <option value="0">未打印</option>
</select> </select>
</td> </td>
<td >格口:</td> <td >格口:</td>
......
...@@ -86,10 +86,10 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http ...@@ -86,10 +86,10 @@ angular.module('AvatarCheck.uploadExcelAndSearch', ['ngRoute', 'AvatarCheck.http
}else{ }else{
json.orderNumber=''; json.orderNumber='';
} }
if ($("#print").val() == 1 || $("#print").val() == -1) { if ($("#print").val() == 1 || $("#print").val() == 0) {
json.state=$("#print").val(); json.state=$("#print").val();
}else { }else {
json.state=''; json.state=-1;
} }
if (angular.isDefined($scope.gkxx)) { if (angular.isDefined($scope.gkxx)) {
json.latticeMouthInformation = $scope.gkxx json.latticeMouthInformation = $scope.gkxx
......
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