Commit be9cb824 authored by 彭令令's avatar 彭令令

印花税快捷申报

parent f88a8f26
......@@ -35,7 +35,7 @@
<div class="div-border" style="padding-bottom: 20px;height: 60px;">
<img style="float:left;display:block" src="/web/onlineReport/static/tools/images/zxtb.png">&nbsp;&nbsp;
<span style="float:left;display:block;margin-left: 10px;margin-top: 9px;top: 10px;"
class="span-title">按期应申报</span>
class="span-title">印花税快捷申报</span>
</div>
<div>
<div class="div-float" style="padding-bottom: 8px; width: 100%;position :relative">
......@@ -54,7 +54,7 @@
<hr class="hr-margin" />
<div id="taxGrid"></div>
<!-- <div style="height:16px"></div> -->
<div class="font-clo" style="padding-top: 20px;">
<!-- <div class="font-clo" style="padding-top: 20px;">
<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">请点此处&nbsp;&nbsp;“<label for="reset" id="reset1"
......@@ -77,7 +77,7 @@
<div class="reminder"><span class="span-font-size">5、没有财务报表清册,可能是以下原因之一:</span></div>
<div class="reminder"><span class="span-font-size">未做财务报表备案;</span></div>
<div class="reminder"><span class="span-font-size">只做了备案报告书但未做具体的会计报表名称;</span></div>
</div>
</div> -->
</div>
</div>
</div>
......
......@@ -26,12 +26,12 @@ function getInitTable() {
success: function (data) { //客户端jquery预先定义好的callback函数,成功获取跨域服务器上的json数据后,会动态执行这个callback函数
hideLoading();
var companyInfo = data;
if (companyInfo.success) {
config.value = companyInfo.bean.value
companyInfo.bean.config = config
companyInfo.bean.return = true; /* @Author ygy @Date 10:12 2020/7/8 @Description 前端判断接口成功返回数据标记用于区分是否执行初始化table方法*/
if (companyInfo.returnCode) {
config.value = companyInfo.content.value
companyInfo.content.config = config
companyInfo.content.return = true; /* @Author ygy @Date 10:12 2020/7/8 @Description 前端判断接口成功返回数据标记用于区分是否执行初始化table方法*/
config.return = true;
initpage = initPage(companyInfo.bean);
initpage = initPage(companyInfo.content);
} else {
hideLoading();
if (data.errmsg != undefined) {
......@@ -39,13 +39,13 @@ function getInitTable() {
} else {
alertWarning(data.returnMessage);
}
if (!companyInfo.bean) {
companyInfo.bean = {};
companyInfo.bean.djxh = getUrlParam("djxh");
companyInfo.bean.return = false;
if (!companyInfo.content) {
companyInfo.content = {};
companyInfo.content.djxh = getUrlParam("djxh");
companyInfo.content.return = false;
}
companyInfo.bean.config = config
initpage = initPage(companyInfo.bean);
companyInfo.content.config = config
initpage = initPage(companyInfo.content);
// 弹出错误对话框
}
$("#getInputValue").on("focus", function () {
......@@ -98,6 +98,12 @@ function initPage(companyInfo) {
taxInfo[i].sssqQ = "-";
taxInfo[i].sssqZ = "-";
}
if (taxInfo[i].sbzt=='Y') {
taxInfo[i].sbzt = "已申报";
}
if (taxInfo[i].sbzt=='N') {
taxInfo[i].sbzt = "未申报";
}
}
}
var id = "#taxGrid";
......@@ -120,7 +126,7 @@ function initPage(companyInfo) {
name: "税款所属期止",
width: "10%"
}, {
name: "申报日期",
name: "申报状态",
width: "10%"
}, {
name: "操作",
......
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