⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 processhistory.ftl

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 FTL
字号:
<div class="head2">Process History</div><#if historyList?has_content>  <div>&nbsp;</div>  <div class="tabletext"><b>Process :</b> ${process.name()} - ${process.description()?default("N/A")} [${process.key()}]</div>  <table cellpadding="2" cellspacing="0" border="1">    <tr>      <td><div class="tableheadtext">Time</div></td>      <td><div class="tableheadtext">Event</div></td>    </tr>    <#list historyList as history>      <#assign time = history.time_stamp().getTime()>      <tr>        <td align="left"><div class="tabletext">${Static["org.ofbiz.base.util.UtilDateTime"].getTimestamp(time)}</div></td>        <td align="left">          <div class="tabletext">            <#assign eventType = history.event_type()>            ${eventType}            <#if eventType == "processStateChanged">              [${history.old_state()} -> ${history.new_state()}]            </#if>          </div>        </td>      </tr>    </#list>  </table><#else>  <div class="tabletext">No history available.</div></#if>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -