summaryrefslogtreecommitdiff
path: root/indoteknik_api/controllers/api_v1/voucher.py
blob: e19ae5835bc101879be1772c67b4b190d694eec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from .. import controller
from odoo import http
from odoo.http import request


class Voucher(controller.Controller):
    prefix = '/api/v1/'

    @http.route(prefix + 'user/<user_id>/voucher', auth='public', methods=['GET', 'OPTIONS'])
    @controller.Controller.must_authorized(private=True, private_key='user_id')
    def get_vouchers(self, **kw):
        cart = request.env['website.user.cart']
        code = kw.get('code')
        user_id = kw.get('user_id')
        source = kw.get('source')
        visibility = ['public']

        parameter = []
        if code:
            visibility.append('private')
            parameter += [('code', '=', code)]
        user_pricelist = request.env.user_pricelist
        if user_pricelist:
            parameter += [('excl_pricelist_ids', 'not in', [user_pricelist.id])]

        parameter += [('visibility', 'in', visibility)]
        vouchers = request.env['voucher'].get_active_voucher(parameter)
        checkout = cart.get_user_checkout(user_id, source=source)

        results = []
        for voucher in vouchers:
            products = checkout['products']

            order_line = []
            for product in products:
                order_line.append({
                    'product_id': request.env['product.product'].browse(product['id']),
                    'price': product['price']['price'],
                    'discount': product['price']['discount_percentage'],
                    'qty': product['quantity'],
                    'subtotal': product['subtotal']
                })
            voucher_info = voucher.apply(order_line)
            voucher_discount = voucher_info['discount']['all']

            valid_order = voucher_info['valid_order']
            has_flashsale_products = any(product['has_flashsale'] for product in products)

            can_apply = True if valid_order and voucher_discount > 0 else False

            voucher_res = voucher.format()
            voucher_res['can_apply'] = can_apply
            voucher_res['apply_status'] = ''
            voucher_res['has_flashsale_products'] = has_flashsale_products
            voucher_res['difference_to_apply'] = 0
            voucher_res['discount_voucher'] = voucher_discount
            results.append(voucher_res)
        
        sorted_results = sorted(results, key=lambda x: x['can_apply'], reverse=True)

        return self.response(sorted_results)