summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/price_group.py
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2023-09-29 02:32:56 +0000
committerIT Fixcomart <it@fixcomart.co.id>2023-09-29 02:32:56 +0000
commit78f205302c35cab2512971d64c8152aab2dcfa95 (patch)
tree72be75ad949fe9efaf7b55c8f7f5722225538b28 /indoteknik_custom/models/price_group.py
parent50b5bd7bd984ef108e8bd324440050a222d8262f (diff)
parent0bb47005022b33c79ecfb5924d41f35ce794c5fb (diff)
Merged in production (pull request #126)
Production
Diffstat (limited to 'indoteknik_custom/models/price_group.py')
-rw-r--r--indoteknik_custom/models/price_group.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/indoteknik_custom/models/price_group.py b/indoteknik_custom/models/price_group.py
index 50f0520f..2a1bbc91 100644
--- a/indoteknik_custom/models/price_group.py
+++ b/indoteknik_custom/models/price_group.py
@@ -15,6 +15,9 @@ class PriceGroup(models.Model):
group3 = fields.Float(string='Kelompok 3 (%)')
group4 = fields.Float(string='Kelompok 4 (%)')
group5 = fields.Float(string='Kelompok 5 (%)')
+ group6 = fields.Float(string='Kelompok 6 (%)')
+ group7 = fields.Float(string='Kelompok 7 (%)')
+ group8 = fields.Float(string='Kelompok 8 (%)')
class Manufacture(models.Model):
_inherit = 'x_manufactures'
@@ -25,4 +28,7 @@ class Manufacture(models.Model):
('group3', 'Kelompok 3'),
('group4', 'Kelompok 4'),
('group5', 'Kelompok 5'),
+ ('group6', 'Kelompok 6'),
+ ('group7', 'Kelompok 7'),
+ ('group8', 'Kelompok 8'),
], string='Pricing Group', copy=False)