ITSA Workflow
This commit is contained in:
@@ -199,6 +199,11 @@
|
||||
color: var(--text-primary);
|
||||
line-height: 1.4;
|
||||
}
|
||||
.step-name a {
|
||||
color: var(--accent);
|
||||
text-decoration: none;
|
||||
}
|
||||
.step-name a:hover { text-decoration: underline; }
|
||||
.step-detail {
|
||||
font-size: 11px;
|
||||
color: var(--text-secondary);
|
||||
@@ -312,7 +317,7 @@
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="step-name">Enter the Purchase Contract (PC-001)</div>
|
||||
<div class="step-name"><a href="#purchase.purchase" data-tryton-model="purchase.purchase">Enter the Purchase Contract (PC-001)</a></div>
|
||||
<div class="step-detail">Menu Purchases → validate → add line → freight fee → estimated BL date → price formula → [Confirm]</div>
|
||||
</td>
|
||||
<td><span class="actor actor-back">Back-office / CTRM</span></td>
|
||||
@@ -321,17 +326,6 @@
|
||||
<div class="process-detail">Trade capture · Contract terms management</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="step-name">Enter the Sale Contracts (SC-001 / 002 / 003)</div>
|
||||
<div class="step-detail">Client: ITC Chile · CFR Mejillones · NCSW · BL+30d · auto-allocation [VALIDATE]</div>
|
||||
</td>
|
||||
<td><span class="actor actor-trade">Trading / Back-office</span></td>
|
||||
<td>
|
||||
<div class="tags"><span class="tag tag-7">7 · Trade & Commodity</span></div>
|
||||
<div class="process-detail">Trade capture · Pricing & tolerance · Contract terms management</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="step-name">Enter budgeted costs on sale contracts</div>
|
||||
@@ -343,6 +337,17 @@
|
||||
<div class="process-detail">Settlements & final P&L · Cost centre accounting</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="step-name">Enter the Sale Contracts (SC-001 / 002 / 003)</div>
|
||||
<div class="step-detail">Client: ITC Chile · CFR Mejillones · NCSW · BL+30d · auto-allocation [VALIDATE]</div>
|
||||
</td>
|
||||
<td><span class="actor actor-trade">Trading / Back-office</span></td>
|
||||
<td>
|
||||
<div class="tags"><span class="tag tag-7">7 · Trade & Commodity</span></div>
|
||||
<div class="process-detail">Trade capture · Pricing & tolerance · Contract terms management</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
@@ -617,5 +622,20 @@
|
||||
<span>Generated from CTRM flowchart "Flow: 30,000 MT per quarter"</span>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
document.addEventListener('click', function(event) {
|
||||
var link = event.target.closest('a[data-tryton-model]');
|
||||
if (!link) {
|
||||
return;
|
||||
}
|
||||
event.preventDefault();
|
||||
|
||||
var topWindow = window.top || window;
|
||||
var hash = topWindow.location.hash || '#tradon';
|
||||
var database = hash.replace(/^#/, '').split('/')[0] || 'tradon';
|
||||
topWindow.location.hash = database + '/model/' + link.dataset.trytonModel;
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user