Browse Source

[REM] pos_price_to_weight: remove in favour of OCA version

pull/147/head
Manuel Claeys Bouuaert 4 years ago
parent
commit
7fc327ecbb
  1. 42
      beesdoo_product/__manifest__.py
  2. 105
      pos_price_to_weight/README.rst
  3. 1
      pos_price_to_weight/__init__.py
  4. 24
      pos_price_to_weight/__manifest__.py
  5. 17
      pos_price_to_weight/data/barcode_rule.xml
  6. 18
      pos_price_to_weight/demo/product_product.xml
  7. 36
      pos_price_to_weight/i18n/ca.po
  8. 36
      pos_price_to_weight/i18n/fr.po
  9. 1
      pos_price_to_weight/models/__init__.py
  10. 14
      pos_price_to_weight/models/barcode_rule.py
  11. BIN
      pos_price_to_weight/static/description/barcode_rule.png
  12. BIN
      pos_price_to_weight/static/description/icon.png
  13. BIN
      pos_price_to_weight/static/description/pos_test_1.png
  14. BIN
      pos_price_to_weight/static/description/pos_test_2.png
  15. 52
      pos_price_to_weight/static/src/js/models.js
  16. 22
      pos_price_to_weight/static/src/js/screens.js
  17. 17
      pos_price_to_weight/static/src/xml/templates.xml

42
beesdoo_product/__manifest__.py

@ -6,29 +6,31 @@
# - Thibault François
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': "beesdoo_product",
'summary': """
"name": "beesdoo_product",
"summary": """
Modification of product module for the needs of beescoop
- SOOO5 - Ajout de label bio/ethique/provenance""",
'description': """
"description": """
""",
'author': "Beescoop - Cellule IT",
'website': "https://github.com/beescoop/Obeesdoo",
'category': 'Sales',
'version': '12.0.1.0.0',
'depends': ['beesdoo_base', 'product', 'sale', 'point_of_sale', 'pos_price_to_weight'],
'data': [
'data/product_label.xml',
'data/barcode_rule.xml',
'data/product_sequence.xml',
'views/beesdoo_product.xml',
'wizard/views/label_printing_utils.xml',
'security/ir.model.access.csv',
"author": "Beescoop - Cellule IT",
"website": "https://github.com/beescoop/Obeesdoo",
"category": "Sales",
"version": "12.0.1.0.0",
"depends": [
"beesdoo_base",
"product",
"sale",
"point_of_sale",
"pos_price_to_weight", # OCA
],
"data": [
"data/product_label.xml",
"data/barcode_rule.xml",
"data/product_sequence.xml",
"views/beesdoo_product.xml",
"wizard/views/label_printing_utils.xml",
"security/ir.model.access.csv",
],
'installable': True,
"installable": True,
}

105
pos_price_to_weight/README.rst

@ -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
<https://github.com/OCA/pos/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 <https://twitter.com/legalsylvain>
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.

1
pos_price_to_weight/__init__.py

@ -1 +0,0 @@
from . import models

24
pos_price_to_weight/__manifest__.py

@ -1,24 +0,0 @@
# Copyright (C) 2017-Today: La Louve (<http://www.lalouve.net/>)
# @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,
}

17
pos_price_to_weight/data/barcode_rule.xml

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2017 - Today: GRAP (http://www.grap.coop)
@author Sylvain LE GAL (https://twitter.com/legalsylvain)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>
<record id="rule_price_to_weight" model="barcode.rule">
<field name="name">Price Barcodes (Computed Weight) 2 Decimals</field>
<field name="barcode_nomenclature_id" ref="barcodes.default_barcode_nomenclature"/>
<field name="type">price_to_weight</field>
<field name="pattern">02.....{NNNDD}</field>
<field name="sequence">15</field>
<field name="encoding">ean13</field>
</record>
</odoo>

18
pos_price_to_weight/demo/product_product.xml

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2017 - Today: GRAP (http://www.grap.coop)
@author Sylvain LE GAL (https://twitter.com/legalsylvain)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>
<record id="product_price_to_weight_barcode" model="product.product">
<field name="name">Apples (with Price To Weight Barcode)</field>
<field name="barcode">0212345000007</field>
<field name="list_price">1.50</field>
<field name="uom_id" ref="uom.product_uom_kgm"/>
<field name="uom_po_id" ref="uom.product_uom_kgm"/>
</record>
</odoo>

36
pos_price_to_weight/i18n/ca.po

@ -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 <mtbochaca@gmail.com>, 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 <mtbochaca@gmail.com>, 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"

36
pos_price_to_weight/i18n/fr.po

@ -1,36 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * pos_price_to_weight
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 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 <transbot@odoo-community.org>, 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 ""

1
pos_price_to_weight/models/__init__.py

@ -1 +0,0 @@
from . import barcode_rule

14
pos_price_to_weight/models/barcode_rule.py

@ -1,14 +0,0 @@
# Copyright (C) 2017-Today: La Louve (<http://www.lalouve.net/>)
# @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)'))
])

BIN
pos_price_to_weight/static/description/barcode_rule.png

Before

Width: 887  |  Height: 225  |  Size: 18 KiB

BIN
pos_price_to_weight/static/description/icon.png

Before

Width: 128  |  Height: 128  |  Size: 7.7 KiB

BIN
pos_price_to_weight/static/description/pos_test_1.png

Before

Width: 632  |  Height: 209  |  Size: 26 KiB

BIN
pos_price_to_weight/static/description/pos_test_2.png

Before

Width: 637  |  Height: 217  |  Size: 27 KiB

52
pos_price_to_weight/static/src/js/models.js

@ -1,52 +0,0 @@
///*
// Copyright (C) 2017-Today: La Louve (<http://www.lalouve.net/>)
// @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;
},
});
});

22
pos_price_to_weight/static/src/js/screens.js

@ -1,22 +0,0 @@
/*
Copyright (C) 2017-Today: La Louve (<http://www.lalouve.net/>)
@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),
});
},
});
});

17
pos_price_to_weight/static/src/xml/templates.xml

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2017-Today: La Louve (<http://www.lalouve.net/>)
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>
<template id="assets_frontend" inherit_id="point_of_sale.assets">
<xpath expr="." position="inside">
<script type="text/javascript" src="/pos_price_to_weight/static/src/js/screens.js"/>
<script type="text/javascript" src="/pos_price_to_weight/static/src/js/models.js"/>
</xpath>
</template>
</odoo>
Loading…
Cancel
Save