size
int64
0
304k
ext
stringclasses
1 value
lang
stringclasses
1 value
branch
stringclasses
1 value
content
stringlengths
0
304k
avg_line_length
float64
0
238
max_line_length
int64
0
304k
3,929
py
PYTHON
15.0
# Copyright 2017-2018 Vauxoo # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class AccountMove(models.Model): _inherit = "account.move" custom_rate = fields.Float( digits=(12, 6), default=1, store=True, readonly=False, ...
41.797872
3,929
805
py
PYTHON
15.0
# Copyright 2017-2018 Vauxoo # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class AccountMoveLine(models.Model): _inherit = "account.move.line" original_price_unit = fields.Monetary( help="Store price unit from every line when the " "invoi...
33.541667
805
701
py
PYTHON
15.0
# Copyright 2017-2018 Vauxoo # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models class ResCurrency(models.Model): _inherit = "res.currency" def _get_rates(self, company, date): """ Inheritance to use the provided custom rate by user instead of the r...
33.380952
701
532
py
PYTHON
15.0
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Update Invoice's Due Date", "version": "15.0.1.0.2", "author": "Vauxoo,Odoo Community Association (OCA)", "maintainers": ["luisg123v", "joao-p-marques"], "category": "Accounting", "website": "https://github.com/OCA/accou...
33.25
532
7,935
py
PYTHON
15.0
# Copyright 2021 Tecnativa - João Marques # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from datetime import datetime, timedelta from odoo import fields from odoo.tests import Form, common class TestAccountInvoiceDateDue(common.TransactionCase): @classmethod def setUpClass(cls): ...
41.539267
7,934
1,942
py
PYTHON
15.0
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class AccountMove(models.Model): _inherit = "account.move" # Show invoice date due even when payment term is defined invoice_date_due_payment_term = fields.Date( related="invoice_date_due", strin...
40.458333
1,942
515
py
PYTHON
15.0
# Copyright 2023 Tecnativa - Carlos Roca # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Account Portal Invoice Search By Lot", "version": "15.0.1.0.0", "category": "Accounting", "website": "https://github.com/OCA/account-invoicing", "author": "Tecnativa, Odoo Community A...
36.785714
515
1,679
py
PYTHON
15.0
# Copyright 2023 Tecnativa - Carlos Roca # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import api, fields, models from odoo.osv import expression class AccountMove(models.Model): _inherit = "account.move" lot_name_search = fields.Char( compute="_compute_lot_name_search",...
32.921569
1,679
733
py
PYTHON
15.0
# Copyright 2019 ForgeFlow S.L. (https://www.forgeflow.com) # Copyright 2017-2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Purchase Stock Picking Return Invoicing", "summary": "Add an option to refund returned pickings", "version": "15.0.1.0.0", ...
40.722222
733
7,034
py
PYTHON
15.0
# Copyright 2019 ForgeFlow S.L. (https://www.forgeflow.com) # Copyright 2017-2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields from odoo.tests.common import TransactionCase, tagged @tagged("post_install", "-at_install") class TestPurchaseStockPick...
41.621302
7,034
10,595
py
PYTHON
15.0
# Copyright 2017 ForgeFlow S.L. (https://www.forgeflow.com) # Copyright 2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import collections from itertools import groupby from odoo import _, api, fields, models from odoo.exceptions import UserError from odoo.tools.float_u...
41.065891
10,595
802
py
PYTHON
15.0
# Copyright 2017 ForgeFlow S.L. (https://www.forgeflow.com) # Copyright 2017-2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, models from odoo.tools import float_is_zero class AccountMove(models.Model): _inherit = "account.move" @api.oncha...
36.454545
802
668
py
PYTHON
15.0
# Copyright 2018 Tecnativa - Sergio Teruel # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Stock Picking Return Refund Option", "summary": "Update the refund options in pickings", "version": "15.0.1.0.1", "development_status": "Production/Stable", "category": "Sales", ...
39.294118
668
5,111
py
PYTHON
15.0
# Copyright 2018 Tecnativa - Sergio Teruel # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo.tests.common import Form, TransactionCase, tagged @tagged("post_install", "-at_install") class TestSaleOrderLineInput(TransactionCase): @classmethod def setUpClass(cls): super().setUpC...
45.230088
5,111
483
py
PYTHON
15.0
# Copyright 2021 Tecnativa - Sergio Teruel # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import models class StockMove(models.Model): _inherit = "stock.move" def write(self, vals): res = super().write(vals) if "to_refund" in vals: for move in self: ...
30.1875
483
3,386
py
PYTHON
15.0
# Copyright 2018 Tecnativa - Sergio Teruel # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import api, fields, models class StockPicking(models.Model): _inherit = "stock.picking" to_refund_lines = fields.Selection( selection=[("to_refund", "To Refund"), ("no_refund", "No Re...
42.325
3,386
858
py
PYTHON
15.0
# Copyright 2022 Lorenzo Battistini - TAKOBI # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). { "name": "Receipts Journals", "summary": "Define and use journals dedicated to receipts", "version": "15.0.1.0.1", "development_status": "Beta", "category": "Accounting & Finance", "web...
29.586207
858
2,345
py
PYTHON
15.0
from odoo.exceptions import ValidationError from odoo.tests import tagged from odoo.addons.account.tests.common import AccountTestInvoicingCommon @tagged("post_install", "-at_install") class TestReceipts(AccountTestInvoicingCommon): def setUp(self): super().setUp() self.out_receipt_journal = self...
39.083333
2,345
5,096
py
PYTHON
15.0
from odoo import _, api, exceptions, models class AccountMove(models.Model): _inherit = "account.move" @api.depends("company_id", "invoice_filter_type_domain", "move_type") def _compute_suitable_journal_ids(self): res = super()._compute_suitable_journal_ids() for m in self: de...
43.931034
5,096
1,993
py
PYTHON
15.0
from odoo import _, api, exceptions, fields, models class AccountJournal(models.Model): _inherit = "account.journal" receipts = fields.Boolean( string="Exclusive to Receipts", help="If checked, this journal will be used by default for receipts " "and only can be used for receipts.", ...
39.078431
1,993
692
py
PYTHON
15.0
# Copyright 2021 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Account Tax Group Widget Base Amount", "summary": "Adds base to tax group widget as it's put in the report", "version": "15.0.1.0.0", "development_status": "Beta", "category": "Accoun...
36.421053
692
697
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import SUPERUSER_ID, api def post_init_hook(cr, registry, vals=None): """Archive the ir.rules we want to override""" env = api.Environment(cr, SUPERUSER_ID, {}) env.ref("account.account_invo...
41
697
601
py
PYTHON
15.0
# Copyright 2018-19 Tecnativa S.L. - David Vidal # Copyright 2022 Moduon Team SL # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Portal Accounting Personal Data Only", "version": "15.0.1.0.0", "category": "Accounting/Accounting", "author": "Moduon, Tecnativa, Odoo Communi...
37.5625
601
2,523
py
PYTHON
15.0
# Copyright 2021 Tecnativa - Víctor Martínez # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) from odoo.tests.common import tagged from odoo.addons.account.tests.common import TestAccountReconciliationCommon @tagged("post_install", "-at_install") class TestPartnerAccess(TestAccountReconciliationCommo...
42.016667
2,521
632
py
PYTHON
15.0
# Copyright 2016 Tecnativa - Carlos Dauden # Copyright 2017 Tecnativa - Pedro M. Baeza # Copyright 2020 Tecnativa - Manuel Calero # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Timesheet details invoice", "summary": "Add timesheet details in invoice line", "version": "15.0.1.0.2...
37.176471
632
9,699
py
PYTHON
15.0
# Copyright 2016 Tecnativa - Carlos Dauden # Copyright 2017 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from datetime import datetime from odoo.tests import common from odoo.tools.float_utils import float_compare class TestSaleTimesheetDescription(common.TransactionCas...
40.58159
9,699
2,215
py
PYTHON
15.0
# Copyright 2020 Akretion - Clément Mombereau # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models from odoo.osv import expression class AccountMove(models.Model): _inherit = "account.move" def _link_timesheets_to_invoice_line(self, start_date=None, end_date=None):...
35.142857
2,214
539
py
PYTHON
15.0
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class ResConfigSettings(models.TransientModel): _inherit = "res.config.settings" default_timesheet_invoice_description = fields.Selection( selection="_get_timesheet_invoice_description", stri...
31.705882
539
441
py
PYTHON
15.0
# Copyright 2020 Akretion - Clément Mombereau # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class AccountAnalyticLine(models.Model): _inherit = "account.analytic.line" timesheet_invoice_line_id = fields.Many2one( "account.move.line", string="...
27.5
440
6,111
py
PYTHON
15.0
# Copyright 2016 Carlos Dauden <carlos.dauden@tecnativa.com> # Copyright 2020 Tecnativa - Manuel Calero # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import _, api, fields, models from odoo.tools import config class SaleOrder(models.Model): _inherit = "sale.order" timesheet_invoi...
38.677215
6,111
592
py
PYTHON
15.0
# Copyright 2018 ACSONE SA/NV (https://acsone.eu) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) { "name": "Account invoice tax note", "version": "15.0.1.0.1", "author": "ACSONE SA/NV,Odoo Community Association (OCA)", "development_status": "Production/Stable", "summary": "Prin...
39.466667
592
6,715
py
PYTHON
15.0
# Copyright 2018 ACSONE SA/NV (<http://acsone.eu>) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from uuid import uuid4 from odoo import fields from odoo.tests.common import TransactionCase class TestAccountInvoice(TransactionCase): """ Tests for account.invoice """ def setUp(...
39.5
6,715
486
py
PYTHON
15.0
# Copyright 2018 ACSONE SA/NV (https://acsone.eu) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) from odoo import models class AccountMove(models.Model): _inherit = "account.move" def _get_account_tax_groups_with_notes(self): self.ensure_one() for line in self: ...
32.4
486
363
py
PYTHON
15.0
# Copyright 2018 ACSONE SA/NV (https://acsone.eu) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) from odoo import fields, models class AccountTaxGroup(models.Model): _inherit = "account.tax.group" report_note = fields.Text( translate=True, help="Note to insert on Invoic...
27.923077
363
1,268
py
PYTHON
15.0
# Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com> # Copyright 2017-2018 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import SUPERUSER_ID, api def match_origin_lines(refund): """Try to match lines by product or by description.""" invoice...
34.27027
1,268
788
py
PYTHON
15.0
# Copyright 2004-2011 Pexego Sistemas Informáticos. (http://pexego.es) # Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com> # Copyright 2014-2017 Pedro M. Baeza <pedro.baeza@tecnativa.com> # Copyright 2021 Tecnativa - João Marques # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "nam...
41.368421
786
4,709
py
PYTHON
15.0
# Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com> # Copyright 2014-2017 Pedro M. Baeza <pedro.baeza@tecnativa.com> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo.tests.common import TransactionCase from .. import post_init_hook class TestInvoiceRefundLinkBase(TransactionC...
33.877698
4,709
1,222
py
PYTHON
15.0
# Copyright 2004-2011 Pexego Sistemas Informáticos. (http://pexego.es) # Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com> # Copyright 2014-2022 Pedro M. Baeza <pedro.baeza@tecnativa.com> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class Account...
37
1,221
896
py
PYTHON
15.0
# Copyright 2004-2011 Pexego Sistemas Informáticos. (http://pexego.es) # Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com> # Copyright 2014-2018 Pedro M. Baeza <pedro.baeza@tecnativa.com> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class AccountInvoi...
34.423077
895
526
py
PYTHON
15.0
# Copyright 2020 Tecnativa - Sergio Teruel # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import models class AccountMoveReversal(models.TransientModel): _inherit = "account.move.reversal" def reverse_moves(self): """ Only link invoice lines with theirs original l...
30.941176
526
799
py
PYTHON
15.0
# Copyright 2011-2020 Julius Network Solutions SARL <contact@julius.fr> # Copyright 2014-2020 Akretion France (http://www.akretion.com/) # @author: Alexis de Lattre <alexis.delattre@akretion.com> # Copyright 2018-2020 Roel Adriaans <roel@road-support.nl> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). ...
36.318182
799
6,888
py
PYTHON
15.0
# Copyright 2014 ToDay Akretion (http://www.akretion.com) # @author Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import time from odoo.tests import tagged from odoo.addons.account.tests.common import AccountTestInvoicingCommon @tagged("...
38.696629
6,888
2,531
py
PYTHON
15.0
# Copyright 2011-2020 Julius Network Solutions SARL <contact@julius.fr> # Copyright 2014-2020 Akretion France (http://www.akretion.com) # @author Mathieu Vatel <mathieu _at_ julius.fr> # @author Alexis de Lattre <alexis.delattre@akretion.com> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo im...
46.018182
2,531
678
py
PYTHON
15.0
# Copyright 2023 ForgeFlow S.L. (https://www.forgeflow.com) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Product From Account Move Line Link", "summary": """ Adds a button on product forms to access Journal Items""", "version": "15.0.1.0.0", "author": "ForgeFl...
33.9
678
702
py
PYTHON
15.0
# Copyright 2023 ForgeFlow S.L. (https://www.forgeflow.com) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models class ProductTemplate(models.Model): _inherit = "product.template" account_move_lines_count = fields.Float( compute="_compute_account...
33.428571
702
1,049
py
PYTHON
15.0
# Copyright 2023 ForgeFlow S.L. (https://www.forgeflow.com) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import fields, models class ProductProduct(models.Model): _inherit = "product.product" account_move_lines_count = fields.Float( compute="_compute_account_move_li...
36.172414
1,049
744
py
PYTHON
15.0
# Copyright 2019-2020 Tecnativa - Pedro M. Baeza # Copyright 2020 Tecnativa - Manuel Calero # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Enqueue account invoice validation", "version": "15.0.1.0.0", "category": "Accounting", "license": "AGPL-3", "author": "Tecnativa, O...
33.818182
744
2,412
py
PYTHON
15.0
# Copyright 2019 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import exceptions from odoo.tests import TransactionCase class TestAccountInvoiceValidationQueued(TransactionCase): @classmethod def setUpClass(cls): super().setUpClass() cls....
36
2,412
654
py
PYTHON
15.0
# Copyright 2019-2020 Tecnativa - Pedro M. Baeza # Copyright 2020 Tecnativa - Manuel Calero # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class AccountMove(models.Model): _inherit = "account.move" validation_job_ids = fields.Many2many( comodel_name="...
27.25
654
1,249
py
PYTHON
15.0
# Copyright 2019 Tecnativa - Pedro M. Baeza # Copyright 2020 Tecnativa - Manuel Calero # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import _, exceptions, models from odoo.addons.queue_job.job import identity_exact class ValidateAccountMove(models.TransientModel): _inherit = "validat...
40.290323
1,249
664
py
PYTHON
15.0
# Copyright (C) 2021 Open Source Integrators # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Restrict Invoice created from SO", "summary": "Restricts editing the Product, Quantity and Unit Price " "columns for invoice lines that originated in Sales Orders.", "version": "15.0....
34.947368
664
469
py
PYTHON
15.0
# Copyright 2019 ForgeFlow S.L. (https://www.forgeflow.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "Account invoice search by reference", "version": "15.0.1.0.0", "author": "ForgeFlow, Odoo Community Association (OCA)", "category": "Invoicing", "website": "h...
33.5
469
2,728
py
PYTHON
15.0
# Copyright 2019 ForgeFlow S.L. (https://www.forgeflow.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo.tests.common import TransactionCase class TestAccountInvoiceSearchByReference(TransactionCase): def setUp(self): super(TestAccountInvoiceSearchByReference, self).set...
36.373333
2,728
965
py
PYTHON
15.0
# Copyright 2019 ForgeFlow S.L. (https://www.forgeflow.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import api, models class AccountMove(models.Model): _inherit = "account.move" @api.model def name_search(self, name, args=None, operator="ilike", limit=100): ...
33.275862
965
738
py
PYTHON
15.0
# Copyright 2019 Tecnativa S.L. - David Vidal # Copyright 2020-2021 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Account Global Discount", "version": "15.0.1.0.1", "category": "Accounting", "author": "Tecnativa, Odoo Community Association (OC...
35.142857
738
20,927
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # Copyright 2020 Tecnativa - Pedro M. Baeza # Copyright 2021 Tecnativa - Víctor Martínez # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import exceptions from odoo.tests import Form, common class TestGlobalDiscount(common.TransactionCase): @class...
43.867925
20,925
19,003
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # Copyright 2020-2021 Tecnativa - Pedro M. Baeza # Copyright 2021 Tecnativa - Víctor Martínez # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import _, api, exceptions, fields, models from odoo.tools import config class AccountMove(models.Model): ...
42.988688
19,001
885
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import fields, models class GlobalDiscount(models.Model): _inherit = "global.discount" _check_company_auto = True account_id = fields.Many2one( comodel_name="account.account", ...
32.777778
885
363
py
PYTHON
15.0
from odoo import api, models class AccountInvoiceReport(models.Model): _inherit = "account.invoice.report" @api.model def _where(self): where_str = super()._where() return where_str.replace( "NOT line.exclude_from_invoice_tab", "(NOT line.exclude_from_invoice_tab O...
27.923077
363
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
4,183
py
PYTHON
15.0
import setuptools with open('VERSION.txt', 'r') as f: version = f.read().strip() setuptools.setup( name="odoo-addons-oca-account-invoicing", description="Meta package for oca-account-invoicing Odoo addons", version=version, install_requires=[ 'odoo-addon-account_global_discount>=15.0dev,<1...
59.757143
4,183
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100
100
py
PYTHON
15.0
import setuptools setuptools.setup( setup_requires=['setuptools-odoo'], odoo_addon=True, )
16.666667
100