2022-12-15 修改bug
parent
a19307dd0e
commit
00df691a49
|
@ -37,7 +37,8 @@
|
|||
<li><a href="#tab3">现金流量表</a></li>
|
||||
</ul>
|
||||
<div class="am-tabs-bd">
|
||||
<div class="am-tab-panel am-fade am-in am-active" id="tab1"><style type="text/css">
|
||||
<div class="am-tab-panel am-fade am-in am-active" id="tab1">
|
||||
<style type="text/css">
|
||||
.s-table {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
|
@ -49,10 +50,21 @@
|
|||
.stable.fixed-top {
|
||||
border-bottom: 0;
|
||||
}
|
||||
.s-table .table-left {
|
||||
flex: 0 0 190px;
|
||||
position: relative;
|
||||
|
||||
/* 解决内容缩小,导致内容换行问题 */
|
||||
@media screen and (max-width:1920px){
|
||||
.s-table .table-left {
|
||||
position: relative;
|
||||
flex: 0 0 190px;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width:1920px){
|
||||
.s-table .table-left {
|
||||
position: relative;
|
||||
flex: 0 0 9.5vw;
|
||||
}
|
||||
}
|
||||
|
||||
.table-left .table-left-top {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
@ -67,7 +79,8 @@
|
|||
}
|
||||
.table-left .table-left-row {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
/*height: 40px;*/
|
||||
height: 4.5vh;
|
||||
border-bottom: 1px solid #CCC;
|
||||
border-right: 1px solid #CCC;
|
||||
padding: 0 6px;
|
||||
|
@ -90,16 +103,31 @@
|
|||
}
|
||||
.table-right .table-right-row {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
/*height: 40px;*/
|
||||
height: 4.5vh;
|
||||
display: flex;
|
||||
}
|
||||
.table-right-column {
|
||||
flex: 0 0 160px;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #CCC;
|
||||
border-right: 1px solid #CCC;
|
||||
|
||||
/* 解决内容缩小,导致内容换行问题 */
|
||||
@media screen and (min-width:1920px){
|
||||
.table-right-column {
|
||||
flex: 0 0 8vw;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #CCC;
|
||||
border-right: 1px solid #CCC;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width:1920px){
|
||||
.table-right-column {
|
||||
flex: 0 0 160px;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #CCC;
|
||||
border-right: 1px solid #CCC;
|
||||
}
|
||||
}
|
||||
|
||||
.table-right-column.td {
|
||||
padding: 0 6px;
|
||||
display: flex;
|
||||
|
@ -130,7 +158,6 @@
|
|||
</#list></#if>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="s-table">
|
||||
<div class="table-left">
|
||||
|
@ -257,6 +284,13 @@
|
|||
<div class="am-tabs-bd">
|
||||
<div class="am-tab-panel am-fade am-in" id="tab2">
|
||||
<div class="am-scrollable-horizontal">
|
||||
<style>
|
||||
@media screen and (max-width: 1920px){
|
||||
#tab2 table tbody{
|
||||
width: calc(100% - 120px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<table class="am-table table-main">
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;">
|
||||
<tr class="cal-table-left">
|
||||
|
@ -279,7 +313,7 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody class="cal-table-left"
|
||||
style="overflow-x: scroll;width: calc(100% - 120px);white-space: nowrap;"><#if (profitAndLossList)?exists && (profitAndLossList?size>0)><#list profitAndLossList as list>
|
||||
style="overflow-x: scroll;white-space: nowrap;"><#if (profitAndLossList)?exists && (profitAndLossList?size>0)><#list profitAndLossList as list>
|
||||
<tr class="cal-table-left">
|
||||
<td class="cal-table-column">${list.title!}</td>
|
||||
<td class="cal-table-column">${(list.income!0)?string("#,##0.##")}</td>
|
||||
|
@ -304,6 +338,13 @@
|
|||
<div class="am-tabs-bd">
|
||||
<div class="am-tab-panel am-fade am-in" id="tab3">
|
||||
<div class="am-scrollable-horizontal">
|
||||
<style>
|
||||
@media screen and (max-width: 1920px){
|
||||
#tab3 table tbody{
|
||||
width: calc(100% - 220px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<table class="am-table table-main">
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;">
|
||||
<tr class="cal-table-left">
|
||||
|
@ -327,7 +368,7 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody class="cal-table-left"
|
||||
style="overflow-x: scroll;width: calc(100% - 220px);white-space: nowrap;"><#if (cashFlowList)?exists && (cashFlowList?size>0)><#list cashFlowList as list>
|
||||
style="overflow-x: scroll;white-space: nowrap;"><#if (cashFlowList)?exists && (cashFlowList?size>0)><#list cashFlowList as list>
|
||||
<tr class="cal-table-left">
|
||||
<td class="cal-table-column">${list.title!}</td>
|
||||
<td class="cal-table-column">${(list.saleIncomeCash!0)?string("#,##0.##")}</td>
|
||||
|
|
|
@ -146,6 +146,11 @@
|
|||
overflow: visible
|
||||
}
|
||||
|
||||
/* 解决横向滚动条出现的空白区域,给隐藏掉 */
|
||||
#tab3{
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
</style>
|
||||
<div id="printContainer"></div>
|
||||
<div class="project_approve" id="contentContainer">
|
||||
|
@ -706,6 +711,7 @@
|
|||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="am-tab-panel am-fade am-in" id="tab31">
|
||||
<#--<span class="am-text-lg">收入明细表</span>-->
|
||||
<div class="fixed-section">
|
||||
|
@ -825,6 +831,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="am-tab-panel am-fade am-in" id="tab36">
|
||||
<#--<span class="am-text-lg">收入明细表</span>-->
|
||||
<div class="fixed-section">
|
||||
|
@ -877,8 +884,8 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="am-tab-panel am-fade am-in" id="tab32">
|
||||
<#--<span class="am-text-lg">采购成本明细表</span>-->
|
||||
<div class="fixed-section">
|
||||
|
@ -1040,8 +1047,8 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="am-tab-panel am-fade am-in" id="tab33">
|
||||
<#--<span class="am-text-lg">项目管理成本表</span>-->
|
||||
<div class="fixed-section">
|
||||
|
@ -1179,6 +1186,7 @@
|
|||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="am-tab-panel am-fade am-in" id="tab34">
|
||||
<#--<span class="am-text-lg">资金计划表</span>-->
|
||||
<div class="am-u-sm-12 am-u-md-12" style="padding:0 1.6rem 1.6rem 1rem;margin:0;">
|
||||
|
@ -1194,9 +1202,9 @@
|
|||
</div>
|
||||
</div>
|
||||
<!--startprint-->
|
||||
<table class="am-table table-main" style="display: block;border-collapse: collapse;width: 1700px;overflow-x: scroll;padding:0;"
|
||||
<table class="am-table table-main" style="display: block;border-collapse: collapse;overflow-x: scroll;padding:0;"
|
||||
id="budgetPlanDetailTable">
|
||||
<thead style="display: inline-block;overflow-x: scroll;width: 200px;">
|
||||
<thead style="display: inline-block;overflow-x: scroll;">
|
||||
<tr style="display: inline-block;">
|
||||
<td style="display: block;border-top: 1px solid #ddd;"><input type="text" class="am-modal-prompt-input am-modal-prompt-input-budget-plan-detail" value="月份" readonly></td>
|
||||
<td style="display: block;border-top: 1px solid #ddd;"><input type="text" class="am-modal-prompt-input am-modal-prompt-input-budget-plan-detail" value="设备支出" readonly></td>
|
||||
|
@ -1214,7 +1222,7 @@
|
|||
<#-- <td style="display: block;">操作</td>-->
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody style="display: inline-block;overflow-x: scroll;width: calc(100% - 210px);white-space: nowrap;">
|
||||
<tbody style="display: inline-block;overflow-x: scroll;white-space: nowrap;">
|
||||
<tr style="display: inline-block;">
|
||||
<td style="display: block;"><input type="text" class="am-modal-prompt-input input-total-month-budget-plan"
|
||||
value="${projectBudgetPlanDetailTotal.month}" readonly/></td>
|
||||
|
|
|
@ -86,6 +86,12 @@
|
|||
.am-form .am-tabs-bd.palm-tabs-bd{
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/* 解决页面,操作按钮点击填写预算进入,不显示页脚按钮问题 */
|
||||
#pmsForm{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="project_budget">
|
||||
|
|
|
@ -46,9 +46,17 @@
|
|||
</ul>
|
||||
<div class="am-tabs-bd">
|
||||
<div class="am-tab-panel am-fade am-in am-active" id="tab1">
|
||||
<style>
|
||||
@media screen and (max-width: 1920px){
|
||||
#tab1 table tbody{
|
||||
width: calc(100% - 180px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<div class="am-scrollable-horizontal">
|
||||
<table class="am-table table-main" cellpadding="0" cellspacing="0">
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;"><tr class="cal-table-left"><th class="table-title cal-table-column">项目名称</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收入--设备类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收入--工程类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收入--服务类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--设备类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--施工类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--服务类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--其他</th><th style="border-top: 1px solid;" class="table-title cal-table-column">成本--其他</th><th style="border-top: 1px solid;" class="table-title cal-table-column">成本--项目管理成本</th><th style="border-top: 1px solid;" class="table-title cal-table-column">财务费用--资金占用成本</th><th style="border-bottom: 1px solid; border-top: 1px solid;" class="table-title cal-table-column">公司管理费用</th></tr></thead><tbody class="cal-table-left" style="overflow-x: scroll;width: calc(100% - 180px);white-space: nowrap;"><#if (pager)?exists><#list pager as list><tr class="cal-table-left"><td class="cal-table-column">${list.projectName!}</td><td class="cal-table-column">${(list.incomeDevice!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.incomeEngineer!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.incomeService!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseDevice!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseBuild!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseService!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseOther!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costOther!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costProjectManage!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costExpropriation!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costCompanyManage!0)?string("#,##0.##")}</td></tr></#list></#if></tbody>
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;"><tr class="cal-table-left"><th class="table-title cal-table-column">项目名称</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收入--设备类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收入--工程类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收入--服务类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--设备类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--施工类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--服务类</th><th style="border-top: 1px solid;" class="table-title cal-table-column">采购成本--其他</th><th style="border-top: 1px solid;" class="table-title cal-table-column">成本--其他</th><th style="border-top: 1px solid;" class="table-title cal-table-column">成本--项目管理成本</th><th style="border-top: 1px solid;" class="table-title cal-table-column">财务费用--资金占用成本</th><th style="border-bottom: 1px solid; border-top: 1px solid;" class="table-title cal-table-column">公司管理费用</th></tr></thead>
|
||||
<tbody class="cal-table-left" style="overflow-x: scroll;white-space: nowrap;"><#if (pager)?exists><#list pager as list><tr class="cal-table-left"><td class="cal-table-column">${list.projectName!}</td><td class="cal-table-column">${(list.incomeDevice!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.incomeEngineer!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.incomeService!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseDevice!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseBuild!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseService!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costPurchaseOther!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costOther!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costProjectManage!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costExpropriation!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costCompanyManage!0)?string("#,##0.##")}</td></tr></#list></#if></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -57,9 +65,17 @@
|
|||
|
||||
<div class="am-tabs-bd">
|
||||
<div class="am-tab-panel am-fade am-in" id="tab2">
|
||||
<style>
|
||||
@media screen and (max-width: 1920px){
|
||||
#tab2 table tbody{
|
||||
width: calc(100% - 120px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<div class="am-scrollable-horizontal">
|
||||
<table class="am-table table-main" cellpadding="0" cellspacing="0">
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;"><tr class="cal-table-left"><th class="table-title cal-table-column">项目名称</th><th style="border-top: 1px solid;" class="table-title cal-table-column">营业收入</th><th style="border-top: 1px solid;" class="table-title cal-table-column">营业成本</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目管理成本</th><th style="border-top: 1px solid;" class="table-title cal-table-column">其他</th><th style="border-top: 1px solid;" class="table-title cal-table-column">财务费用</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目毛利</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目毛利率</th><th style="border-top: 1px solid;" class="table-title cal-table-column">公司管理费用</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目贡献利润</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目贡献利润率</th><th style="border-top: 1px solid;" class="table-title cal-table-column">所得税费用</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目净利润</th><th style="border-bottom: 1px solid; border-top: 1px solid;" class="table-title cal-table-column">项目净利润率</th></tr></thead><tbody class="cal-table-left" style="overflow-x: scroll;width: calc(100% - 120px);white-space: nowrap;"><#if (pager)?exists><#list pager as list><tr class="cal-table-left"><td class="cal-table-column">${list.projectName!}</td><td class="cal-table-column">${(list.incomeTotal!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costTotal2!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costProjectManage!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costOther!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costExpropriation!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.grossProfit!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.grossProfitProfitMargin!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costCompanyManage!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.contributionProfit!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.contributionProfitProfitMargin!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.taxCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netProfit!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netProfitProfitMargin!0)?string("#,##0.##")}</td></tr></#list></#if></tbody>
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;"><tr class="cal-table-left"><th class="table-title cal-table-column">项目名称</th><th style="border-top: 1px solid;" class="table-title cal-table-column">营业收入</th><th style="border-top: 1px solid;" class="table-title cal-table-column">营业成本</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目管理成本</th><th style="border-top: 1px solid;" class="table-title cal-table-column">其他</th><th style="border-top: 1px solid;" class="table-title cal-table-column">财务费用</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目毛利</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目毛利率</th><th style="border-top: 1px solid;" class="table-title cal-table-column">公司管理费用</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目贡献利润</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目贡献利润率</th><th style="border-top: 1px solid;" class="table-title cal-table-column">所得税费用</th><th style="border-top: 1px solid;" class="table-title cal-table-column">项目净利润</th><th style="border-bottom: 1px solid; border-top: 1px solid;" class="table-title cal-table-column">项目净利润率</th></tr></thead>
|
||||
<tbody class="cal-table-left" style="overflow-x: scroll;white-space: nowrap;"><#if (pager)?exists><#list pager as list><tr class="cal-table-left"><td class="cal-table-column">${list.projectName!}</td><td class="cal-table-column">${(list.incomeTotal!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costTotal2!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costProjectManage!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costOther!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costExpropriation!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.grossProfit!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.grossProfitProfitMargin!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.costCompanyManage!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.contributionProfit!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.contributionProfitProfitMargin!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.taxCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netProfit!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netProfitProfitMargin!0)?string("#,##0.##")}</td></tr></#list></#if></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -67,9 +83,17 @@
|
|||
|
||||
<div class="am-tabs-bd">
|
||||
<div class="am-tab-panel am-fade am-in" id="tab3">
|
||||
<style>
|
||||
@media screen and (max-width: 1920px){
|
||||
#tab3 table tbody{
|
||||
width: calc(100% - 250px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<div class="am-scrollable-horizontal">
|
||||
<table class="am-table table-main" cellpadding="0" cellspacing="0">
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;"><tr class="cal-table-left"><th class="table-title cal-table-column">项目名称</th><th style="border-top: 1px solid;" class="table-title cal-table-column">销售商品、提供劳务收到的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收到的税费返还</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收到的其他与经营活动有关的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">购买商品、接受劳务支付的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">支付的各项税费</th><th style="border-top: 1px solid;" class="table-title cal-table-column">支付其他与经营活动有关的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">经营活动产生的现金流量净额</th><th style="border-top: 1px solid;" class="table-title cal-table-column">投资活动现金流入</th><th style="border-top: 1px solid;" class="table-title cal-table-column">投资活动现金流出</th><th style="border-top: 1px solid;" class="table-title cal-table-column">投资活动产生的现金流量净额</th><th style="border-top: 1px solid;" class="table-title cal-table-column">借款资金流入</th><th style="border-top: 1px solid;" class="table-title cal-table-column">还款资金流出</th><th style="border-top: 1px solid;" class="table-title cal-table-column">筹资活动产生的现金流量净额</th><th style="border-bottom: 1px solid; border-top: 1px solid;" class="table-title cal-table-column">货币资金净增加额</th></tr></thead><tbody class="cal-table-left" style="overflow-x: scroll;width: calc(100% - 250px);white-space: nowrap;"><#if (pager)?exists><#list pager as list><tr class="cal-table-left"><td class="cal-table-column">${list.projectName!}</td><td class="cal-table-column">${(list.saleIncomeCash!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.taxReturn!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.earnestMoneyIncome!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.purchaseCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.taxCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.earnestMoneyCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netCashFlow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.cashInflowFromInvestingActivities!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.cashOutflowFromInvestingActivities!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netCashFromInvestingActivities!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.financingCapitalInflow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.financingCapitalOutflow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.financingCapitalCashflow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netIncreaseMonetaryFunds!0)?string("#,##0.##")}</td></tr></#list></#if></tbody>
|
||||
<thead class="cal-table-left" style="overflow-x: scroll;"><tr class="cal-table-left"><th class="table-title cal-table-column">项目名称</th><th style="border-top: 1px solid;" class="table-title cal-table-column">销售商品、提供劳务收到的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收到的税费返还</th><th style="border-top: 1px solid;" class="table-title cal-table-column">收到的其他与经营活动有关的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">购买商品、接受劳务支付的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">支付的各项税费</th><th style="border-top: 1px solid;" class="table-title cal-table-column">支付其他与经营活动有关的现金</th><th style="border-top: 1px solid;" class="table-title cal-table-column">经营活动产生的现金流量净额</th><th style="border-top: 1px solid;" class="table-title cal-table-column">投资活动现金流入</th><th style="border-top: 1px solid;" class="table-title cal-table-column">投资活动现金流出</th><th style="border-top: 1px solid;" class="table-title cal-table-column">投资活动产生的现金流量净额</th><th style="border-top: 1px solid;" class="table-title cal-table-column">借款资金流入</th><th style="border-top: 1px solid;" class="table-title cal-table-column">还款资金流出</th><th style="border-top: 1px solid;" class="table-title cal-table-column">筹资活动产生的现金流量净额</th><th style="border-bottom: 1px solid; border-top: 1px solid;" class="table-title cal-table-column">货币资金净增加额</th></tr></thead>
|
||||
<tbody class="cal-table-left" style="overflow-x: scroll;white-space: nowrap;"><#if (pager)?exists><#list pager as list><tr class="cal-table-left"><td class="cal-table-column">${list.projectName!}</td><td class="cal-table-column">${(list.saleIncomeCash!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.taxReturn!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.earnestMoneyIncome!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.purchaseCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.taxCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.earnestMoneyCost!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netCashFlow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.cashInflowFromInvestingActivities!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.cashOutflowFromInvestingActivities!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netCashFromInvestingActivities!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.financingCapitalInflow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.financingCapitalOutflow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.financingCapitalCashflow!0)?string("#,##0.##")}</td><td class="cal-table-column">${(list.netIncreaseMonetaryFunds!0)?string("#,##0.##")}</td></tr></#list></#if></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue