Browse Source

Sep 13: [FIX] Bug Fixed 'section_wise_subtotal'

pull/254/merge
Cybrosys Technologies 8 months ago
parent
commit
66955cee80
  1. 2
      section_wise_subtotal/__manifest__.py
  2. 7
      section_wise_subtotal/doc/RELEASE_NOTES.md
  3. 5
      section_wise_subtotal/static/src/js/section_subtotal_backends.js

2
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 '

7
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
- Initial commit for Section Wise Subtotal
#### 13.09.2024
#### Version 15.0.1.0.1
#### ADD
- Bug Fix

5
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({
}
}
},
});
//});
});

Loading…
Cancel
Save