mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
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.
25 lines
744 B
XML
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>
|