diff --git a/pos_price_to_weight/README.rst b/pos_price_to_weight/README.rst deleted file mode 100644 index 82f9a45..0000000 --- a/pos_price_to_weight/README.rst +++ /dev/null @@ -1,105 +0,0 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - -=============================== -Point of Sale - Price to Weight -=============================== - -This module extends Odoo Point Of Sale features, to allow to scan barcode -with price and to compute according quantity. - -In Odoo by default, there are three types of barcode rules for products. - -* 'Unit Product' (type='product'). Scanning a product will add a unit of this - product to the current order. -* 'Priced product' (type='price'). A price is extracted from the barcode, and - a new line with the given price and a quantity = 1 is added to the current - order. -* 'Weighted product' (type='weight). A weight is extracted from the barcode, - and a new line with the given weight, and a computed price - (quantity * Unit price) is added to the current order. - -This module add a new option: - -* 'Priced Product (Computed Weight)' (type='price_to_weight'). A price is - extracted from the barcode, and a new line with the given price, and a - computed quantity (Price / Unit Price) is added to the current order. - -.. image:: /pos_price_to_weight/static/description/barcode_rule.png - :width: 800 px - -This module is usefull in shops with products scaled, to manage correctly -stock quantities. - -Samples - -* Given a product with a unit price of 1,50€ / kg -* The barcode is 0212345{NNNDD}x where: - * 02 is the prefix of the barcode rule - * 12345 is the product number - * {NNNDD} is the price of the scaled product - * x is the control digit - -if {NNNDD} is 00265, the price is so 2,65€ and the according quantity is -2,65€ / 1,5 €/kg = 1,767 kg - -.. image:: /pos_price_to_weight/static/description/pos_test_1.png - :width: 800 px - -if {NNNDD} is 00810, the price is so 8,10€ and the according quantity is -8,10€ / 1,5 €/kg = 5,400 kg - -.. image:: /pos_price_to_weight/static/description/pos_test_2.png - :width: 800 px - - -Configuration -============= - -* Go to 'Point of Sale' / 'Configuration' / 'Barcode Nomenclatures' -* Edit your barcode rules, according to your barcodes settings - -Usage -===== - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/184/9.0 - -Bug Tracker -=========== - -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smash it by providing detailed and welcomed feedback. - -Credits -======= - -Images ------- - -Icon parts come from http://icons8.com - -Contributors ------------- - -* Sylvain LE GAL - - -Maintainer ----------- - -.. image:: https://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: https://odoo-community.org - -This module is maintained by the OCA. - -OCA, or the Odoo Community Association, is a nonprofit organization whose -mission is to support the collaborative development of Odoo features and -promote its widespread use. - -To contribute to this module, please visit https://odoo-community.org. diff --git a/pos_price_to_weight/__init__.py b/pos_price_to_weight/__init__.py deleted file mode 100644 index 0650744..0000000 --- a/pos_price_to_weight/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import models diff --git a/pos_price_to_weight/__manifest__.py b/pos_price_to_weight/__manifest__.py deleted file mode 100644 index dd6c129..0000000 --- a/pos_price_to_weight/__manifest__.py +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright (C) 2017-Today: La Louve () -# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -{ - 'name': 'Point of Sale - Price to Weight', - 'version': '12.0.1.0.0', - 'category': 'Point Of Sale', - 'summary': 'Compute weight based on barcodes with prices', - 'author': 'La Louve, GRAP, Odoo Community Association (OCA)', - 'website': 'http://www.lalouve.net/', - 'license': 'AGPL-3', - 'depends': [ - 'point_of_sale', - ], - 'data': [ - 'data/barcode_rule.xml', - 'static/src/xml/templates.xml', - ], - 'demo': [ - 'demo/product_product.xml', - ], - 'installable': True, -} diff --git a/pos_price_to_weight/data/barcode_rule.xml b/pos_price_to_weight/data/barcode_rule.xml deleted file mode 100644 index d201c33..0000000 --- a/pos_price_to_weight/data/barcode_rule.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - Price Barcodes (Computed Weight) 2 Decimals - - price_to_weight - 02.....{NNNDD} - 15 - ean13 - - diff --git a/pos_price_to_weight/demo/product_product.xml b/pos_price_to_weight/demo/product_product.xml deleted file mode 100644 index 14d5671..0000000 --- a/pos_price_to_weight/demo/product_product.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Apples (with Price To Weight Barcode) - 0212345000007 - 1.50 - - - - - diff --git a/pos_price_to_weight/i18n/ca.po b/pos_price_to_weight/i18n/ca.po deleted file mode 100644 index 00ca1b8..0000000 --- a/pos_price_to_weight/i18n/ca.po +++ /dev/null @@ -1,36 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * pos_price_to_weight -# -# Translators: -# Marc Tormo i Bochaca , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-09 03:08+0000\n" -"PO-Revision-Date: 2017-06-09 03:08+0000\n" -"Last-Translator: Marc Tormo i Bochaca , 2017\n" -"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. module: pos_price_to_weight -#: model:product.product,name:pos_price_to_weight.product_price_to_weight_barcode -#: model:product.template,name:pos_price_to_weight.product_price_to_weight_barcode_product_template -msgid "Apples (with Price To Weight Barcode)" -msgstr "Pomes (amb preu per pes de codi de barres)" - -#. module: pos_price_to_weight -#: code:addons/pos_price_to_weight/models/barcode_rule.py:16 -#, python-format -msgid "Priced Product (Computed Weight)" -msgstr "Producte amb preu (pes automatitzat)" - -#. module: pos_price_to_weight -#: model:ir.model,name:pos_price_to_weight.model_barcode_rule -msgid "barcode.rule" -msgstr "barcode.rule" diff --git a/pos_price_to_weight/i18n/fr.po b/pos_price_to_weight/i18n/fr.po deleted file mode 100644 index 51169c2..0000000 --- a/pos_price_to_weight/i18n/fr.po +++ /dev/null @@ -1,36 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * pos_price_to_weight -# -# Translators: -# OCA Transbot , 2017 -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-06-09 03:08+0000\n" -"PO-Revision-Date: 2017-06-09 03:08+0000\n" -"Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. module: pos_price_to_weight -#: model:product.product,name:pos_price_to_weight.product_price_to_weight_barcode -#: model:product.template,name:pos_price_to_weight.product_price_to_weight_barcode_product_template -msgid "Apples (with Price To Weight Barcode)" -msgstr "Pommes (Avec un code barre Prix vers Pois)" - -#. module: pos_price_to_weight -#: code:addons/pos_price_to_weight/models/barcode_rule.py:16 -#, python-format -msgid "Priced Product (Computed Weight)" -msgstr "Code Barre Prix (Poid calculé)" - -#. module: pos_price_to_weight -#: model:ir.model,name:pos_price_to_weight.model_barcode_rule -msgid "barcode.rule" -msgstr "" diff --git a/pos_price_to_weight/models/__init__.py b/pos_price_to_weight/models/__init__.py deleted file mode 100644 index ba6651a..0000000 --- a/pos_price_to_weight/models/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from . import barcode_rule diff --git a/pos_price_to_weight/models/barcode_rule.py b/pos_price_to_weight/models/barcode_rule.py deleted file mode 100644 index 11b24fa..0000000 --- a/pos_price_to_weight/models/barcode_rule.py +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright (C) 2017-Today: La Louve () -# @author: Sylvain LE GAL (https://twitter.com/legalsylvain) -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). - -from odoo import _, fields, models - - -class BarcodeRule(models.Model): - _inherit = 'barcode.rule' - - type = fields.Selection(selection_add=[ - ('price_to_weight', _('Priced Product (Computed Weight)')) - ]) - \ No newline at end of file diff --git a/pos_price_to_weight/static/description/barcode_rule.png b/pos_price_to_weight/static/description/barcode_rule.png deleted file mode 100644 index e4aba69..0000000 Binary files a/pos_price_to_weight/static/description/barcode_rule.png and /dev/null differ diff --git a/pos_price_to_weight/static/description/icon.png b/pos_price_to_weight/static/description/icon.png deleted file mode 100644 index e45fc5c..0000000 Binary files a/pos_price_to_weight/static/description/icon.png and /dev/null differ diff --git a/pos_price_to_weight/static/description/pos_test_1.png b/pos_price_to_weight/static/description/pos_test_1.png deleted file mode 100644 index 40022e5..0000000 Binary files a/pos_price_to_weight/static/description/pos_test_1.png and /dev/null differ diff --git a/pos_price_to_weight/static/description/pos_test_2.png b/pos_price_to_weight/static/description/pos_test_2.png deleted file mode 100644 index 773401d..0000000 Binary files a/pos_price_to_weight/static/description/pos_test_2.png and /dev/null differ diff --git a/pos_price_to_weight/static/src/js/models.js b/pos_price_to_weight/static/src/js/models.js deleted file mode 100644 index 910dab1..0000000 --- a/pos_price_to_weight/static/src/js/models.js +++ /dev/null @@ -1,52 +0,0 @@ -///* -// Copyright (C) 2017-Today: La Louve () -// @author: Sylvain LE GAL (https://twitter.com/legalsylvain) -// License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -//*/ - - -odoo.define('pos_price_to_weight.models', function (require) { - "use strict"; - - var models = require('point_of_sale.models'); - - var _super_PosModel = models.PosModel.prototype; - - models.PosModel = models.PosModel.extend({ - - initialize: function (session, attributes) { - - var product_model = _.find(this.models, function(model){ - return model.model === 'product.product'; - }); - product_model.fields.push('total_with_vat'); - - // Inheritance - return _super_PosModel.initialize.call(this, session, attributes); - }, - - scan_product: function(parsed_code) { - if (! (parsed_code.type === 'price_to_weight')){ - // Normal behaviour - return _super_PosModel.scan_product.apply(this, [parsed_code]); - } - // Compute quantity, based on price and unit price - var selectedOrder = this.get_order(); - var product = this.db.get_product_by_barcode(parsed_code.base_code); - if(!product){ - return false; - } - var quantity = 0; - var price = parseFloat(parsed_code.value) || 0; - if (price !== 0 && product.price !== 0){ - // replace the initial line cause this only work for price with - // vat include in the price in the pos. - - quantity = price / product.total_with_vat; - } - selectedOrder.add_product(product, {quantity: quantity, merge: false}); - return true; - }, - - }); -}); diff --git a/pos_price_to_weight/static/src/js/screens.js b/pos_price_to_weight/static/src/js/screens.js deleted file mode 100644 index 74ad0ce..0000000 --- a/pos_price_to_weight/static/src/js/screens.js +++ /dev/null @@ -1,22 +0,0 @@ -/* - Copyright (C) 2017-Today: La Louve () - @author: Sylvain LE GAL (https://twitter.com/legalsylvain) - License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -*/ - - -odoo.define('pos_price_to_weight.screens', function (require) { - "use strict"; - - var screens = require('point_of_sale.screens'); - - screens.ScreenWidget.include({ - show: function(){ - this._super(); - var self = this; - this.pos.barcode_reader.set_action_callback({ - 'price_to_weight': _.bind(self.barcode_product_action, self), - }); - }, - }); -}); diff --git a/pos_price_to_weight/static/src/xml/templates.xml b/pos_price_to_weight/static/src/xml/templates.xml deleted file mode 100644 index 98da0a7..0000000 --- a/pos_price_to_weight/static/src/xml/templates.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - -