diff --git a/section_wise_subtotal/__manifest__.py b/section_wise_subtotal/__manifest__.py index eef26b081..27ca9d7ab 100644 --- a/section_wise_subtotal/__manifest__.py +++ b/section_wise_subtotal/__manifest__.py @@ -21,7 +21,7 @@ ############################################################################### { 'name': 'Section Wise Subtotal', - 'version': '15.0.1.0.0', + 'version': '15.0.1.0.1', 'category': 'Sales,Purchases', 'summary': 'Section wise subtotal in the order line', 'description': 'This module help you section wise subtotal in order ' diff --git a/section_wise_subtotal/doc/RELEASE_NOTES.md b/section_wise_subtotal/doc/RELEASE_NOTES.md index 15645f107..e3ab1ffa3 100644 --- a/section_wise_subtotal/doc/RELEASE_NOTES.md +++ b/section_wise_subtotal/doc/RELEASE_NOTES.md @@ -3,4 +3,9 @@ #### 26.06.2023 #### Version 15.0.1.0.0 #### ADD -- Initial commit for Section Wise Subtotal \ No newline at end of file +- Initial commit for Section Wise Subtotal + +#### 13.09.2024 +#### Version 15.0.1.0.1 +#### ADD +- Bug Fix \ No newline at end of file diff --git a/section_wise_subtotal/static/src/js/section_subtotal_backends.js b/section_wise_subtotal/static/src/js/section_subtotal_backends.js index 892b688ec..30d40ccae 100644 --- a/section_wise_subtotal/static/src/js/section_subtotal_backends.js +++ b/section_wise_subtotal/static/src/js/section_subtotal_backends.js @@ -2,9 +2,6 @@ * This module help us to calculate the section wise subtotal in * Sale order and Purchase order. **/ - odoo.define('section_wise_subtotal.section_subtotal_backends', function(require){ -"use strict"; - var basic_fields = require('web.basic_fields'); var SectionAndNoteListRenderer = require('account.section_and_note_backend'); @@ -86,5 +83,5 @@ basic_fields.NumericField.include({ } } }, -}); +//}); });