Initial commit: Mrp packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:50 +02:00
commit 50d736b3bd
739 changed files with 538193 additions and 0 deletions

View file

@ -0,0 +1,21 @@
/** @odoo-module **/
import tour from 'web_tour.tour';
const subcontractingPortalSteps = [{
trigger: 'table > tbody > tr a:has(span:contains(WH/IN/00))',
content: 'Select the picking to open the backend view.',
run: 'click',
},{
trigger: '.o_subcontracting_portal',
content: 'Wait the subcontracting portal to be loaded.',
run: function () {},
}, {
trigger: 'button[name="action_show_details"]',
run: 'click',
}];
tour.register('subcontracting_portal_tour', {
test: true,
url: '/my/productions',
}, subcontractingPortalSteps);