Initial commit: OCA Mrp packages (117 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:05 +02:00
commit 277e84fd7a
4403 changed files with 395154 additions and 0 deletions

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" ?>
<templates id="template" xml:space="preserve">
<t
t-name="mrp_bom_location.BomOverviewTable"
t-inherit="mrp.BomOverviewTable"
t-inherit-mode="extension"
owl="1"
>
<xpath expr="//thead/tr/th[last()-1]" position="after">
<th t-if="data.location">Location</th>
</xpath>
</t>
<t
t-name="mrp_bom_location.BomOverviewLine"
t-inherit="mrp.BomOverviewLine"
t-inherit-mode="extension"
owl="1"
>
<xpath expr="//td[last()-1]" position="after">
<td t-if="data.location">
<t t-esc="data.location" />
</td>
</xpath>
</t>
</templates>