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
388
py
PYTHON
15.0
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo.tests.common import TransactionCase class TestPurchaseOrderApproved(TransactionCase): def test_purchase_order_approved(self): po = self.env["purchase.order"].create( {"partner_id": self.env.ref("base.res_partner_12").id...
32.333333
388
4,486
py
PYTHON
15.0
# Copyright 2020 ACSONE SA/NV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields from odoo.tests.common import TransactionCase class TestPurchaseOrder(TransactionCase): @classmethod def setUpClass(cls): super(TestPurchaseOrder, cls).setUpClass() cls.suppli...
37.383333
4,486
2,035
py
PYTHON
15.0
# Copyright 2017 ForgeFlow S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class PurchaseOrder(models.Model): _inherit = "purchase.order" state = fields.Selection(selection_add=[("approved", "Approved"), ("purchase",)]) READONLY_STATES = { "p...
39.901961
2,035
724
py
PYTHON
15.0
# Copyright 2017 ForgeFlow S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class ResCompany(models.Model): _inherit = "res.company" purchase_approve_active = fields.Boolean( string="Use State 'Approved' in Purchase Orders", help="Adds an e...
40.222222
724
401
py
PYTHON
15.0
# Copyright 2018 ForgeFlow S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class ResConfigSettings(models.TransientModel): _inherit = "res.config.settings" purchase_approve_active = fields.Boolean( related="company_id.purchase_approve_active", ...
28.642857
401
471
py
PYTHON
15.0
# Copyright 2020 ACSONE SA/NV # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import fields, models class ResPartner(models.Model): _inherit = "res.partner" purchase_requires_second_approval = fields.Selection( selection=[ ("never", "Never"), ("bas...
24.789474
471
609
py
PYTHON
15.0
# Copyright 2021 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Purchase Receipt Expectation - Manual", "version": "15.0.1.0.1", "category": "Purchase Management", "author": "Camptocamp SA, Odoo Community Association (OCA)", "website": "https://github.com/O...
30.45
609
10,136
py
PYTHON
15.0
# Copyright 2021 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from datetime import datetime, timedelta from odoo.tests.common import Form from odoo.addons.purchase_receipt_expectation.tests.test_purchase_receipt_expectation import ( TestPurchaseReceiptExpectation, ) class TestP...
41.036437
10,136
7,001
py
PYTHON
15.0
# Copyright 2021 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models from odoo.tools.float_utils import float_round class PurchaseOrderLine(models.Model): _inherit = "purchase.order.line" feasible_for_manual_receipt = fields.Boolean( com...
38.467033
7,001
1,451
py
PYTHON
15.0
# Copyright 2021 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class PurchaseOrder(models.Model): _inherit = "purchase.order" receipt_expectation = fields.Selection( selection_add=[("manual", "Manual")], ondelete={"manual": "set...
33.744186
1,451
1,073
py
PYTHON
15.0
# Copyright 2021 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class StockMove(models.Model): _inherit = "stock.move" manually_generated = fields.Boolean() manually_received_qty = fields.Float( compute="_compute_manually_recei...
30.657143
1,073
2,471
py
PYTHON
15.0
# Copyright 2021 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class PurchaseOrderManualReceiptLine(models.TransientModel): _name = "purchase.order.manual.receipt.wizard.line" _description = "PO Manual Receipt Wizard Line" wizard_id = ...
28.732558
2,471
8,507
py
PYTHON
15.0
# Copyright 2021 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from collections import defaultdict from odoo import _, fields, models from odoo.tools.float_utils import float_compare class PurchaseOrderManualReceipt(models.TransientModel): _name = "purchase.order.manual.receipt.w...
36.354701
8,507
469
py
PYTHON
15.0
# Copyright 2023 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Purchase Line - Qty To Receive", "version": "15.0.1.0.0", "category": "Purchase Management", "author": "Camptocamp, Odoo Community Association (OCA), Italo Lopes", "website": "https://github.co...
33.5
469
1,489
py
PYTHON
15.0
# Copyright 2023 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo.tests import TransactionCase class TestPurchaseOrderLineQtyToReceive(TransactionCase): @classmethod def setUpClass(cls): super().setUpClass() cls.partner = cls.env["res.partner"].create({"...
36.317073
1,489
478
py
PYTHON
15.0
# Copyright 2023 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, fields, models class PurchaseOrderLine(models.Model): _inherit = "purchase.order.line" qty_to_receive = fields.Float(compute="_compute_qty_to_receive", store=True) @api.depends("product_...
31.866667
478
543
py
PYTHON
15.0
# Copyright 2014-2019 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) { "name": "Purchase - Analytic Account Global", "version": "15.0.1.0.1", "author": "Camptocamp, Odoo Community Association (OCA)", "maintainer": "Camptocamp", "license": "AGPL-3", "category": "Pur...
31.941176
543
3,239
py
PYTHON
15.0
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) from datetime import date from odoo.tests.common import Form, TransactionCase class TestPurchaseAnalyticGlobal(TransactionCase): @classmethod def setUpClass(cls): super().setUpClass() cls.purchase_order_model = cls.env["purchase....
39.024096
3,239
1,082
py
PYTHON
15.0
# Copyright 2014-2019 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) from odoo import api, fields, models class PurchaseOrder(models.Model): _inherit = "purchase.order" account_analytic_id = fields.Many2one( "account.analytic.account", string="Analytic Account",...
34.903226
1,082
668
py
PYTHON
15.0
# Copyright 2019 ACSONE SA/NV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Product Form Purchase Link", "summary": """ Add an option to display the purchases lines from product""", "version": "15.0.1.1.0", "license": "AGPL-3", "development_status": "Beta", ...
31.809524
668
457
py
PYTHON
15.0
# Copyright Odoo S.A. # License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "Purchase Control Menu from v12", "version": "15.0.1.0.0", "category": "Purchase", "author": "Tecnativa, Odoo S.A., Odoo Community Association (OCA)", "website": "https://github.com/OCA/purchase-wor...
35.153846
457
634
py
PYTHON
15.0
# Copyright 2022 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Purchase Merge", "summary": "Wizard to merge purchase with required conditions", "version": "15.0.1.0.0", "author": "Camptocamp, Odoo Community Association (OCA)", "website": "https://github.com...
35.222222
634
3,236
py
PYTHON
15.0
from odoo.exceptions import UserError from odoo.tests import common class TestPurchaseMerge(common.TransactionCase): @classmethod def setUpClass(cls): super(TestPurchaseMerge, cls).setUpClass() cls.PurchaseMerge = cls.env["purchase.merge.automatic.wizard"] cls.product_1 = cls.env["prod...
38.987952
3,236
8,259
py
PYTHON
15.0
# Copyright 2022 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openupgradelib import openupgrade_merge_records from odoo import _, api, fields, models from odoo.exceptions import ValidationError class MergePurchaseAutomatic(models.TransientModel): """ The idea behind thi...
36.706667
8,259
584
py
PYTHON
15.0
# Copyright 2022 ForgeFlow S.L. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) { "name": "Purchase Fully Received", "summary": "Useful filters in Purchases to know the actual status of shipments." "and invoices", "author": "Forgeflow, Odoo Community Association (OCA)", "licens...
29.2
584
3,534
py
PYTHON
15.0
# Copyright 2022 ForgeFlow, S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from datetime import datetime from odoo import fields from odoo.tests import Form, common, tagged @tagged("-at_install", "post_install") class TestPurchaseOrderAutoLock(common.TransactionCase): def setUp(self): ...
38
3,534
738
py
PYTHON
15.0
# Copyright 2022 ForgeFlow S.L. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html) from odoo import api, fields, models class PurchaseOrder(models.Model): _inherit = "purchase.order" # This field is more complete than the standard is_shipped is_fully_shipped = fields.Boolean( co...
33.545455
738
822
py
PYTHON
15.0
# Copyright 2020 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Purchase Work Acceptance Invoice Plan", "version": "15.0.1.0.0", "category": "Purchase Management", "author": "Ecosoft, Odoo Community Association (OCA)", "license": ...
35.73913
822
6,612
py
PYTHON
15.0
# Copyright 2020 Ecosoft (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) from odoo import fields from odoo.exceptions import UserError from odoo.tests.common import Form, TransactionCase class TestPurchaseWorkAcceptanceInvoicePlan(TransactionCase): def setUp(self): ...
45.287671
6,612
9,106
py
PYTHON
15.0
# Copyright 2020 Ecosoft Co., Ltd. (http://ecosoft.co.th). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import _, api, fields, models from odoo.exceptions import UserError from odoo.tools import float_compare, float_round class SelectWorkAcceptanceInvoicePlanWizard(models.TransientModel...
38.748936
9,106
460
py
PYTHON
15.0
# Copyright 2019 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import models class SelectWorkAcceptanceWizard(models.TransientModel): _inherit = "select.work.acceptance.wizard" def _get_purchase_order_with_context(self, order_id): ...
38.333333
460
1,860
py
PYTHON
15.0
# Copyright 2020 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models class PurchaseOrderLine(models.Model): _inherit = "purchase.order.line" def _get_product_qty(self): installment_id = self.env.context.get("installment_id"...
32.631579
1,860
420
py
PYTHON
15.0
# Copyright 2020 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import fields, models class WorkAcceptance(models.Model): _inherit = "work.acceptance" installment_id = fields.Many2one( comodel_name="purchase.invoice.plan", s...
26.25
420
671
py
PYTHON
15.0
# Copyright 2021 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Purchase recommendations according to sales classification", "summary": "Extends the purchase recomendator with classification filters", "version": "15.0.1.0.0", "category": "Purchases", ...
39.470588
671
2,013
py
PYTHON
15.0
# Copyright 2021 Tecnativa # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo.addons.purchase_order_product_recommendation.tests import test_recommendation class ClassificationRecommendationCase(test_recommendation.RecommendationCase): @classmethod def setUpClass(cls): super()....
44.733333
2,013
3,350
py
PYTHON
15.0
# Copyright 2021 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import api, fields, models class PurchaseOrderRecommendation(models.TransientModel): _inherit = "purchase.order.recommendation" abc_classification_profile_id = fields.Many2one( comodel_...
36.021505
3,350
798
py
PYTHON
15.0
# Copyright 2016 Eficent Business and IT Consulting Services S.L. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0). { "name": "Purchase Request to Purchase Agreement", "version": "15.0.1.0.1", "author": "Eficent,Acsone SA/NV,Odoo Community Association (OCA)", "website": "https://githu...
34.695652
798
8,565
py
PYTHON
15.0
# Copyright 2016 ACSONE SA/NV (<http://acsone.eu>) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import SUPERUSER_ID from odoo.exceptions import UserError from odoo.tests import tagged from odoo.tests.common import TransactionCase @tagged("post_install", "-at_install") class TestPurch...
41.57767
8,565
7,591
py
PYTHON
15.0
# Copyright 2016 Eficent Business and IT Consulting Services S.L. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0). from odoo import _, api, fields, models from odoo.exceptions import UserError class PurchaseRequestLineMakePurchaseRequisition(models.TransientModel): _name = "purchase.request.li...
38.532995
7,591
4,426
py
PYTHON
15.0
# Copyright 2016 Eficent Business and IT Consulting Services S.L. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0). from odoo import _, api, fields, models from odoo.exceptions import UserError class PurchaseRequest(models.Model): _inherit = "purchase.request" requisition_count = fields.In...
34.850394
4,426
751
py
PYTHON
15.0
# Copyright 2016 Eficent Business and IT Consulting Services S.L. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0). from odoo import _, api, models from odoo.exceptions import ValidationError class ProductTemplate(models.Model): _inherit = "product.template" @api.constrains("purchase_reque...
35.761905
751
4,834
py
PYTHON
15.0
# Copyright 2016 Eficent Business and IT Consulting Services S.L. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0). from odoo import _, api, fields, models class PurchaseRequisition(models.Model): _inherit = "purchase.requisition" purchase_request_count = fields.Integer( compute="_...
36.900763
4,834
650
py
PYTHON
15.0
# Copyright 2022 ForgeFlow S.L. # (http://www.forgeflow.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "Purchase Tags", "summary": "Allows to add multiple tags to purchase orders", "version": "15.0.1.0.0", "author": "ForgeFlow, Odoo Community Association (OCA)", ...
30.952381
650
440
py
PYTHON
15.0
# Copyright 2022 ForgeFlow S.L. # (http://www.forgeflow.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import fields, models class PurchaseOrder(models.Model): _inherit = "purchase.order" tag_ids = fields.Many2many( comodel_name="purchase.tag", relatio...
25.882353
440
582
py
PYTHON
15.0
# Copyright 2022 ForgeFlow S.L. # (http://www.forgeflow.com) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from random import randint from odoo import fields, models class PurchaseTag(models.Model): _name = "purchase.tag" _description = "Purchase Tag" def _get_default_color(se...
26.454545
582
700
py
PYTHON
15.0
# Copyright 2021 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Purchase Work Acceptance Tier Validation", "summary": "Extends the functionality of Work Acceptance to " "support a tier validation process.", "version": "15.0.1.0.0", ...
38.888889
700
504
py
PYTHON
15.0
# Copyright 2019 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo.tests import common class TestPurchaseWorkAcceptanceTierValidation(common.TransactionCase): def setUp(self): super().setUp() self.tier_definition = self.env["tier.de...
33.6
504
421
py
PYTHON
15.0
# Copyright 2021 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import api, models class TierDefinition(models.Model): _inherit = "tier.definition" @api.model def _get_tier_validation_model_names(self): res = super(TierDefinitio...
30.071429
421
368
py
PYTHON
15.0
# Copyright 2021 Ecosoft Co., Ltd. (http://ecosoft.co.th) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models class WorkAcceptance(models.Model): _name = "work.acceptance" _inherit = ["work.acceptance", "tier.validation"] _state_from = ["draft"] _state_to = ["accep...
28.307692
368
513
py
PYTHON
15.0
# Copyright 2015 AvanzOSC # Copyright 2017-2019 Tecnativa - Pedro M. Baeza # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Purchase order line stock available", "version": "15.0.1.0.0", "license": "AGPL-3", "author": "AvanzOSC," "Tecnativa," "Odoo Community Association (OCA)"...
36.642857
513
2,186
py
PYTHON
15.0
# Copyright 2021 Tecnativa - Víctor Martínez # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) from datetime import date from odoo.tests import common class TestPurchase(common.TransactionCase): def setUp(self): super().setUp() self.company = self.env.ref("base.main_company") ...
38.315789
2,184
217
py
PYTHON
15.0
from odoo import fields, models class PurchaseOrderLine(models.Model): _inherit = "purchase.order.line" virtual_available = fields.Float( related="product_id.virtual_available", readonly=True )
24.111111
217
640
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Purchase Order General Discount", "summary": "General discount per purchase order", "version": "15.0.1.0.1", "category": "Purchases", "website": "https://github.com/OCA/purchase-workf...
33.684211
640
2,620
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # Copyright 2022 Tecnativa - Pilar Vargas # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from lxml import etree from odoo.tests import TransactionCase, common class TestPurchaseOrderLineInput(TransactionCase): @classmethod def setUpClass(cls): ...
36.901408
2,620
2,792
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from lxml import etree from odoo import api, fields, models class PurchaseOrder(models.Model): _inherit = "purchase.order" general_discount = fields.Float( digits="Discount", string="Gen...
35.794872
2,792
1,183
py
PYTHON
15.0
# Copyright 2019 Tecnativa - David Vidal # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import _, api, fields, models class ResCompany(models.Model): _inherit = "res.company" purchase_general_discount_field = fields.Selection( selection="_get_purchase_discount_fields", ...
36.96875
1,183
374
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 ResConfigSettings(models.TransientModel): _inherit = "res.config.settings" purchase_general_discount_field = fields.Selection( related="company_id.purchase_g...
31.166667
374
362
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 ResPartner(models.Model): _inherit = "res.partner" purchase_general_discount = fields.Float( digits="Discount", string="Purchase General Discount (%...
25.857143
362
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
6,335
py
PYTHON
15.0
import setuptools with open('VERSION.txt', 'r') as f: version = f.read().strip() setuptools.setup( name="odoo-addons-oca-purchase-workflow", description="Meta package for oca-purchase-workflow Odoo addons", version=version, install_requires=[ 'odoo-addon-procurement_purchase_no_grouping>=1...
62.107843
6,335
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