Commit e0661de9 authored by chase's avatar chase

fix bug

parent 4b7906b9
......@@ -1711,16 +1711,20 @@ taxDocumentManageModule.directive('tempModule', function () {
controller: ['$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 = {
"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