Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions product_scale_label/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
===============
beesdoo_product
===============

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:1a4c2282b2aba0174e84c5e9254cd7b9c7f9d4f8ca39a5ad97c1048470b2e90d
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-beescoop%2FObeesdoo-lightgray.png?logo=github
:target: https://github.com/beescoop/Obeesdoo/tree/16.0/product_scale_label
:alt: beescoop/Obeesdoo

|badge1| |badge2| |badge3|

Add scale labels, sale units, and categories.
Added fields are sent to Bizerba scales.

**Table of contents**

.. contents::
:local:

Changelog
=========

12.0.1.4.0 (2022-07-08)
~~~~~~~~~~~~~~~~~~~~~~~

**Features**

- If 'Automatically write suggested price' is enabled in the configuration: when
purchase price is changed in the 'Edit Price' menu, the sales price is now
automatically updated to the suggested price. (`#320 <https://github.com/beescoop/Obeesdoo/issues/320>`_)

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/beescoop/Obeesdoo/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/beescoop/Obeesdoo/issues/new?body=module:%20product_scale_label%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* BEES coop - Cellule IT
* Coop IT Easy SC

Contributors
~~~~~~~~~~~~

* BEES coop - Cellule IT
* Coop IT Easy SC

Maintainers
~~~~~~~~~~~

This module is part of the `beescoop/Obeesdoo <https://github.com/beescoop/Obeesdoo/tree/16.0/product_scale_label>`_ project on GitHub.

You are welcome to contribute.
1 change: 1 addition & 0 deletions product_scale_label/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
29 changes: 29 additions & 0 deletions product_scale_label/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2017 - 2020 BEES coop SCRLfs
# - Elouan Lebars <[email protected]>
# - Rémy Taymans <[email protected]>
# - Houssine BAKKALI <[email protected]>
# - Manuel Claeys Bouuaert <[email protected]>
# - Vincent Van Rossem <[email protected]>
# - Elise Dupont
# - Thibault François
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "beesdoo_product",
"summary": """Add scale labels, sale units, and categories.""",
"author": "BEES coop - Cellule IT, Coop IT Easy SC",
"website": "https://github.com/beescoop/Obeesdoo",
"category": "Sales",
"version": "16.0.1.0.0",
"depends": [
"point_of_sale",
"product",
"sale",
],
"data": [
"views/product_template_view.xml",
"views/scale_category_view.xml",
"views/uom_category_view.xml",
"security/ir.model.access.csv",
],
"license": "AGPL-3",
}
Loading