summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models
diff options
context:
space:
mode:
Diffstat (limited to 'indoteknik_custom/models')
-rw-r--r--indoteknik_custom/models/price_group.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/indoteknik_custom/models/price_group.py b/indoteknik_custom/models/price_group.py
index 1b1c817f..fce78fff 100644
--- a/indoteknik_custom/models/price_group.py
+++ b/indoteknik_custom/models/price_group.py
@@ -18,6 +18,8 @@ class PriceGroup(models.Model):
group6 = fields.Float(string='Kelompok 6 (%)')
group7 = fields.Float(string='Kelompok 7 (%)')
group8 = fields.Float(string='Kelompok 8 (%)')
+ group9 = fields.Float(string='Kelompok 9 (%)')
+ group10 = fields.Float(string='Kelompok 10 (%)')
def collect_price_group(self):
PRICE_GROUP_ID = {
@@ -47,4 +49,6 @@ class Manufacture(models.Model):
('group6', 'Kelompok 6'),
('group7', 'Kelompok 7'),
('group8', 'Kelompok 8'),
+ ('group9', 'Kelompok 9'),
+ ('group10', 'Kelompok 10'),
], string='Pricing Group', copy=False)