Skip to Content
Menu
This question has been flagged
2 Replies
1167 Views

I am working on odoo version 15; trying to customize receipt in POS module ; but I have an internal server error (500) .. My code as following:

OrderReceipt.xml

link of my code in xml : https://stackoverflow.com/questions/73136420/internal-server-error-in-customized-receipt 

  manifest.py
... "license": "OPL-1", "depends": [ 'base', 'point_of_sale', ], 'assets': { 'web.assets_qweb': [ 'static/src/xml/OrderReceipt.xml', # 'views/OrderReceipt.xml', ],  
Error Log :
FileNotFoundError: File not found: static/src/xml/OrderReceipt.xml - - -
2022-07-28 05:41:09,068 342410 INFO newestDB07021 werkzeug: 192.168.0.61 - - [28/Jul/2022 05:41:09] "GET /favicon.ico HTTP/1.1" 404 - 127 0.074 0.189
2022-07-28 05:41:50,952 342410 INFO newestDB07021 werkzeug: 192.168.0.61 - - [28/Jul/2022 05:41:50] "POST /longpolling/poll HTTP/1.1" 200 - 13 0.025 50.159
2022-07-28 05:41:52,030 342410 INFO newestDB07021 werkzeug: 192.168.0.61 - - [28/Jul/2022 05:41:52] "POST /longpolling/poll HTTP/1.1" 200 - 9 0.017 50.024
2022-07-28 05:41:55,264 342410 INFO newestDB07021 odoo.addons.base.models.ir_cron: Starting job `payment: post-process transactions`. 
2022-07-28 05:41:55,270 342410 INFO newestDB07021 odoo.addons.base.models.ir_cron: Job `payment: post-process transactions` done


Avatar
Discard
Author Best Answer

the problem was in manifest .. I did not write the whole path .. it should be in the assests : 
'assets': {        'web.assets_qweb': [            'custom/static/src/xml/custom_pos.xml'
,
which custom refer to custom module name 

Avatar
Discard
Best Answer

Hi,

As per the shared error message it seems to be File not found error !. Do you have a file named OrderReceipt.xml inside your module in the following path: static/src/xml ?

Thanks & Regards

Avatar
Discard
Author

yes , I did

what is the error in log currently

Related Posts Replies Views Activity
1
Jul 24
1328
0
Jan 23
9
1
Nov 22
1589
1
Jun 22
983
1
Apr 22
2579