ITSA Workflow
This commit is contained in:
@@ -199,6 +199,11 @@
|
|||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
}
|
}
|
||||||
|
.step-name a {
|
||||||
|
color: var(--accent);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.step-name a:hover { text-decoration: underline; }
|
||||||
.step-detail {
|
.step-detail {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
color: var(--text-secondary);
|
color: var(--text-secondary);
|
||||||
@@ -312,7 +317,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<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>
|
<div class="step-detail">Menu Purchases → validate → add line → freight fee → estimated BL date → price formula → [Confirm]</div>
|
||||||
</td>
|
</td>
|
||||||
<td><span class="actor actor-back">Back-office / CTRM</span></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>
|
<div class="process-detail">Trade capture · Contract terms management</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</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>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<div class="step-name">Enter budgeted costs on sale contracts</div>
|
<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>
|
<div class="process-detail">Settlements & final P&L · Cost centre accounting</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</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>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@@ -617,5 +622,20 @@
|
|||||||
<span>Generated from CTRM flowchart "Flow: 30,000 MT per quarter"</span>
|
<span>Generated from CTRM flowchart "Flow: 30,000 MT per quarter"</span>
|
||||||
</footer>
|
</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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user