Commit e0661de9 authored by chase's avatar chase

fix bug

parent 4b7906b9
...@@ -1711,16 +1711,20 @@ taxDocumentManageModule.directive('tempModule', function () { ...@@ -1711,16 +1711,20 @@ taxDocumentManageModule.directive('tempModule', function () {
controller: ['$scope', 'taxDocumentListService', '$translate', controller: ['$scope', 'taxDocumentListService', '$translate',
function ($scope, taxDocumentListService, $translate) { function ($scope, taxDocumentListService, $translate) {
//税种 //税种
$scope.taxTypeSelects = [ $scope.taxTypeSelects = [];
"纳税申报表", angular.forEach(constant.GroupTypeList, function (item) {
"税票", $scope.taxTypeSelects.push(item.type);
"企业所得税", });
"印花税", // $scope.taxTypeSelects = [
"附加税", // "纳税申报表",
"代扣代缴税", // "税票",
"其它税", // "企业所得税",
"增值税", // "印花税",
]; // "附加税",
// "代扣代缴税",
// "其它税",
// "增值税",
// ];
//审批状态 //审批状态
$scope.auditSelectsMap = { $scope.auditSelectsMap = {
"0":"待审批", "0":"待审批",
......
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