Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Problem including JS asset in v18

Subscribe

Get notified when there's activity on this post

This question has been flagged
v18
3 Replies
8133 Views
Avatar
Lele Gaifax

I'm porting an addon I wrote for Odoo17 to v18, and it's going well. 

One issue I'm still unable to figure out is related to the inclusion of a pretty simple JS asset, marked with @odoo-module​: while it works as expected un v17, with v18 I get an odoo.define is not a function​ error in the browser. The reason is that in the latter case it is emitted at the very beginning of web.assets_web.min.js​, before the module_loader.js​ library that defines that function.

In both environments I declared it in the web.assets_backend​ slot of the assets​ entry of the top-level __manifest__.py​ of the addon:

'assets': {'web.assets_backend': ['my_addon/static/src/snippet.js']}


I have read several different addons in the standard community edition source, but could not spot a way to influence the inclusion order, that AFAICT when written that way it should be appended to the bundle...

What am I missing?

Thanks in advance for any hint!

0
Avatar
Discard
Avatar
Radji Mubarak
Best Answer

I my case the js file is nont being loaded for some reason and I am trying to extend the POS component even though the file is correctly loaded:

'assets': {
'web.assets_backend': [
'my_module_name/static/src/js/cash_move_popup_patch.js',
],
'point_of_sale.assets': [
'my_module_name/static/src/js/cash_move_popup_extend.js',
],
},

Here is the file itself:

/** @odoo-module **/
console.log("Patch file loaded")
import { patch } from "@web/core/utils/patch";
import { CashMovePopup } from "@point_of_sale/app/navbar/cash_move_popup/cash_move_popup";

patch(CashMovePopup.prototype, 'custom_cash_move_popup_patch', {
setup() {
console.log("Custom Patch: CashMovePopup has been called.");
// Prevent the original setup method from executing
},
});

The console logs are not showing

1
Avatar
Discard
Vertec LLC

@Radji Mubarak were you able to resolve this issue? I'm having the exact same problem, nothing seems to be executing in my module either. It's like it's completely missing.

Radji Mubarak

Hello everyon i was able to resolve it
'assets': {
'point_of_sale._assets_pos': [
'my_module_name/static/src/js/cash_move_popup_extend.js',
],
},

The magic was in the *_pos*

Vertec LLC

@Radji, I'm trying to solve a very similar issue with web_editor. I'm doing this:
'assets': {
'web_editor.assets_wysiwyg': [
'web_editor_extensions/static/src/js/wysiwyg.js',
],
},

and also tried this:
'assets': {
'web_editor.backend_assets_wysiwyg': [
'web_editor_extensions/static/src/js/wysiwyg.js',
],
},

And even this:

'assets': {
'web_editor.assets_wysiwyg': [
'web_editor_extensions/static/NOT_A_FOLDER/src/js/wysiwyg.js',
],
},

And I'm not even getting any errors with installing the module. I've tried restarting Odoo on odoo.sh, dropping the staging branch, reinstalling, upgrading, and regenerating the assets. I'm really stumped on this.

Avatar
Arfan 2603
Best Answer

you need to depend 'web' module to make it works. because somehow your modules are loaded before 'web' module.

0
Avatar
Discard
Avatar
Lele Gaifax
Author Best Answer

For what is worth, I think the issue was related to some kind of cache somewhere: restarting from a clean checkout of the development environment on a different machine did not exhibit the problem, and thus, after spending some time to cleanup whatever seemd like a cache in the original environment, I eventually got it working there too.

Sorry for the noise and thanks for reading.

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Change Sign & Pay Button on Quotation E-mails
v18
Avatar
Avatar
Avatar
2
Nov 25
213
Is it possible to sell on credit directly at the point of sale and leave the order pending payment?
v18
Avatar
Avatar
2
Sep 25
712
How to segrigate a product into multiple products & at the same time i have to manufacture that product also with separate BOM? Solved
v18
Avatar
Avatar
1
Jun 25
1860
Turkey live currency rates from TCMB
v18
Avatar
Avatar
Avatar
3
Mar 25
2976
Where is the PDF Partner Ledger QWeb Report and View in Odoo Online?
v18
Avatar
Avatar
1
Feb 25
3048
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now