<apex:component access="global" controller="AssetMaintainAbandonSummaryController">
|
<apex:attribute name="targetId" assignTo="{!amhId}" description="" type="Id" required="false" />
|
<html>
|
<head>{!init}</head>
|
<body>
|
<table border="1" cellspacing="0" width="80%">
|
<tr align="center">
|
<td>备品存放地</td>
|
<apex:repeat value="{!COLUMN_NAMES}" var="col">
|
<td>{!col}</td>
|
</apex:repeat>
|
</tr>
|
<tr align="center">
|
<td>北京 备品中心</td>
|
<apex:repeat value="{!COLUMN_NAMES}" var="col">
|
<td>{!bjMap[col]}</td>
|
</apex:repeat>
|
</tr>
|
<tr align="center">
|
<td>上海 备品中心</td>
|
<apex:repeat value="{!COLUMN_NAMES}" var="col">
|
<td>{!shMap[col]}</td>
|
</apex:repeat>
|
</tr>
|
<tr align="center">
|
<td>广州 备品中心</td>
|
<apex:repeat value="{!COLUMN_NAMES}" var="col">
|
<td>{!gzMap[col]}</td>
|
</apex:repeat>
|
</tr>
|
<tr align="center">
|
<td>合计</td>
|
<apex:repeat value="{!COLUMN_NAMES}" var="col">
|
<td>{!totalMap[col]}</td>
|
</apex:repeat>
|
</tr>
|
</table>
|
</body>
|
</html>
|
</apex:component>
|