<% if (Object.keys(libData).length > 0 && libData.tax_group.length > 0) { %>
<% for(let tax of libData.tax_group) {%>
<% let groupIndex = "";%>
<% if(tax.taxType === "1") { %>
<% groupIndex = groupIndex + tax.taxType;%>
一般计税
<% } else if(tax.taxType === "2"){%>
<% groupIndex = groupIndex + tax.taxType;%>
简易计税
<% } %>
|
<% if(tax.program_lib && tax.program_lib.id) { %>
<% groupIndex = groupIndex + tax.program_lib.id;%>
<%= tax.program_lib.displayName%>
<% } %>
|
<% if(tax.template_lib && tax.template_lib.id) { %>
<% groupIndex = groupIndex + tax.template_lib.id;%>
<%= tax.template_lib.name%>
<% } %>
|
<% if(tax.col_lib && tax.col_lib.id) { %>
<% groupIndex = groupIndex + tax.col_lib.id;%>
<%= tax.col_lib.name%>
<% } %>
|
<% if(tax.fee_lib && tax.fee_lib.id) { %>
<% groupIndex = groupIndex + tax.fee_lib.id;%>
<%= tax.fee_lib.name%>
<% } %>
|
编辑/删除
|
<% } %>
<% } %>