Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Z
zxtb_to_ssfwpt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Bugzilla
Bugzilla
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
卢世豪
zxtb_to_ssfwpt
Commits
318dae9f
Commit
318dae9f
authored
Aug 20, 2020
by
刘明珠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
逾期去掉财务报表展示
parent
5346759e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
42 deletions
+44
-42
index.html
jsp/overdue/index.html
+2
-2
overdue_grid.js
static/biz/overdue_grid.js
+42
-40
No files found.
jsp/overdue/index.html
View file @
318dae9f
...
@@ -54,12 +54,12 @@
...
@@ -54,12 +54,12 @@
<hr
class=
"hr-margin"
/>
<hr
class=
"hr-margin"
/>
<div
id=
"taxGrid"
></div>
<div
id=
"taxGrid"
></div>
<div
style=
"height:16px"
></div>
<div
style=
"height:16px"
></div>
<div
class=
"div-clear-folat"
>
<
!-- <
div class="div-clear-folat">
<strong>财务报表报送</strong>
<strong>财务报表报送</strong>
</div>
</div>
<hr class="hr-margin" />
<hr class="hr-margin" />
<div id="financialGrid"></div>
<div id="financialGrid"></div>
<div
style=
"height:16px"
></div>
<div style="height:16px"></div>
-->
<div
class=
"font-clo"
>
<div
class=
"font-clo"
>
<div
style=
"font-size:12px"
>
温馨提示:
</div>
<div
style=
"font-size:12px"
>
温馨提示:
</div>
<div
class=
"reminder"
><span
class=
"span-font-size"
>
1、如近期有税费种认定、纳税人资格、备案等发生变动,页面展现清册与实际说需不符的,
</span></div>
<div
class=
"reminder"
><span
class=
"span-font-size"
>
1、如近期有税费种认定、纳税人资格、备案等发生变动,页面展现清册与实际说需不符的,
</span></div>
...
...
static/biz/overdue_grid.js
View file @
318dae9f
...
@@ -64,46 +64,47 @@ function initPage(companyInfo) {
...
@@ -64,46 +64,47 @@ function initPage(companyInfo) {
/**
/**
* 展示财务报表申报信息
* 展示财务报表申报信息
*/
*/
var
showFinancial
=
function
(
financialInfo
,
type
)
{
/*
if
(
financialInfo
.
length
>
0
)
{
var showFinancial = function (financialInfo, type) {
for
(
var
i
=
0
;
i
<
financialInfo
.
length
;
i
++
)
{
if (financialInfo.length > 0) {
financialInfo
[
i
].
sbrq
=
financialInfo
[
i
].
sbrq
?
financialInfo
[
i
].
sbrq
.
split
(
" "
)[
0
]
:
""
;
for (var i = 0; i < financialInfo.length; i++) {
financialInfo[i].sbrq = financialInfo[i].sbrq ? financialInfo[i].sbrq.split(" ")[0] : "";
}
}
var id = "#financialGrid";
var buttonHtml = "填写财报";
var order = ["kjzd", "pzzlMc", "sssqQ", "sssqZ", "sbqx", "do"];
var promptStatement = "";
if (financialInfo.length < 1 && type == 1) {
promptStatement = "您尚未进行财务报表类型备案,请先备案后再进行申报";
}
}
}
var
id
=
"#financialGrid"
;
var
buttonHtml
=
"填写财报"
;
var
order
=
[
"kjzd"
,
"pzzlMc"
,
"sssqQ"
,
"sssqZ"
,
"sbqx"
,
"do"
];
var
promptStatement
=
""
;
if
(
financialInfo
.
length
<
1
&&
type
==
1
)
{
promptStatement
=
"您尚未进行财务报表类型备案,请先备案后再进行申报"
;
}
var
headerList
=
[{
name
:
"序号"
,
width
:
"5%"
},
{
name
:
"财务、会计制度"
,
width
:
"10%"
},
{
name
:
"财务报表报送小类"
,
width
:
"45%"
},
{
name
:
"报送所属期起"
,
width
:
"10%"
},
{
name
:
"报送所属期止"
,
width
:
"10%"
},
{
name
:
"报送期限"
,
width
:
"10%"
},
{
name
:
"操作"
,
width
:
"10%"
}];
//渲染表
getTableOverdue
(
id
,
order
,
headerList
,
financialInfo
,
buttonHtml
,
promptStatement
)
};
var headerList = [{
name: "序号",
width: "5%"
}, {
name: "财务、会计制度",
width: "10%"
}, {
name: "财务报表报送小类",
width: "45%"
}, {
name: "报送所属期起",
width: "10%"
}, {
name: "报送所属期止",
width: "10%"
}, {
name: "报送期限",
width: "10%"
}, {
name: "操作",
width: "10%"
}];
//渲染表
getTableOverdue(id, order, headerList, financialInfo, buttonHtml, promptStatement)
};
*/
/**
/**
* 税务申报table渲染
* 税务申报table渲染
...
@@ -246,7 +247,8 @@ function initPage(companyInfo) {
...
@@ -246,7 +247,8 @@ function initPage(companyInfo) {
}
else
{
}
else
{
showTax
(
bean
.
taxInfos
);
showTax
(
bean
.
taxInfos
);
}
}
if
(
bean
.
financialInfos
.
length
==
0
)
{
// 20200820 lmz 孟博通知,财务报表逾期要去税务大厅办理,前端页面不再展示
/*if (bean.financialInfos.length == 0) {
showFinancial([], 0);
showFinancial([], 0);
alertInfo("财务报表报送暂无数据");
alertInfo("财务报表报送暂无数据");
} else {
} else {
...
@@ -255,7 +257,7 @@ function initPage(companyInfo) {
...
@@ -255,7 +257,7 @@ function initPage(companyInfo) {
} else if (bean.cwbbbabz != "N") {
} else if (bean.cwbbbabz != "N") {
showFinancial(bean.financialInfos, 0);
showFinancial(bean.financialInfos, 0);
}
}
}
}
*/
};
};
//申报方式 当iszzsybjc=01同时pzzlDm=010101时,调用改方法
//申报方式 当iszzsybjc=01同时pzzlDm=010101时,调用改方法
var
declarationMethod
=
function
(
statu
)
{
var
declarationMethod
=
function
(
statu
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment