summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/product_template.py
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2023-08-01 04:33:35 +0000
committerIT Fixcomart <it@fixcomart.co.id>2023-08-01 04:33:35 +0000
commit0cdfe713ecec45544caf6fb15c6e1a1c8e515141 (patch)
tree9759a230fbcb4f8b26ede8bc632ac344db3c9c93 /indoteknik_custom/models/product_template.py
parent61bbb1b7164378a31522312ca3a076d6d35141d3 (diff)
parentf8e0259289c728b11a373601e569f6e64ca803f8 (diff)
Merged in feature/voucher-cart (pull request #79)
Update voucher can't combined with other promotions
Diffstat (limited to 'indoteknik_custom/models/product_template.py')
-rwxr-xr-xindoteknik_custom/models/product_template.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/indoteknik_custom/models/product_template.py b/indoteknik_custom/models/product_template.py
index 82cb0432..72fb4dea 100755
--- a/indoteknik_custom/models/product_template.py
+++ b/indoteknik_custom/models/product_template.py
@@ -319,4 +319,11 @@ class ProductProduct(models.Model):
def unlink(self):
if self._name == 'product.product':
- raise UserError('Maaf anda tidak bisa delete product') \ No newline at end of file
+ raise UserError('Maaf anda tidak bisa delete product')
+
+ def _get_active_flash_sale(self):
+ pricelist = self.env['product.pricelist'].search([
+ ('is_flash_sale', '=', True),
+ ('item_ids.product_id', '=', self.id)
+ ], limit=1)
+ return pricelist \ No newline at end of file