Files
stock-logistics-warehouse/stock_vertical_lift/views/stock_vertical_lift_templates.xml
SilvioC2C 702c876a23 [IMP] stock_vertical_lift: filter notifications by screen
If the same user opens multiple shuttles operations on different screens,
notifications for a specific shuttle will be displayed on all of them,
regardless of the shuttle operation that triggered the notification.

This commit allows filtering notifications per screen, so that only
screens displaying shuttle operations related to the current notifications
will display them.

Notifications that are not shuttle-related are not filtered out.
2024-02-19 14:55:33 +01:00

25 lines
744 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template
id="stock_vertical_lift_assets"
name="stock.vertical.lift.assets"
inherit_id="web.assets_backend"
>
<xpath expr="." position="inside">
<link
rel="stylesheet"
type="text/scss"
href="/stock_vertical_lift/static/src/scss/vertical_lift.scss"
/>
<script
type="text/javascript"
src="/stock_vertical_lift/static/src/js/vertical_lift.js"
/>
<script
type="text/javascript"
src="/stock_vertical_lift/static/src/js/web_client.js"
/>
</xpath>
</template>
</odoo>