Skip to content

Commit

Permalink
added parallel valuation module (PR)
Browse files Browse the repository at this point in the history
  • Loading branch information
danila12 committed Dec 5, 2023
1 parent d0df01e commit 08ce1fd
Show file tree
Hide file tree
Showing 8 changed files with 539 additions and 0 deletions.
67 changes: 67 additions & 0 deletions l10n_ro_parallel_valuation/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
==================================
Romania - Parallel Stock Valuation
==================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:e4dcb7bfe8db183bdd45140323fee6bd1cfdab375a33226c8073866bdf644888
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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-dhongu%2Fl10n--romania-lightgray.png?logo=github
:target: https://github.com/dhongu/l10n-romania/tree/15.0/l10n_ro_parallel_valuation
:alt: dhongu/l10n-romania

|badge1| |badge2| |badge3|

Functionalitati
- camp "active" in SVL

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/dhongu/l10n-romania/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/dhongu/l10n-romania/issues/new?body=module:%20l10n_ro_parallel_valuation%0Aversion:%2015.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
~~~~~~~

* Dorin Hongu

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

* `Terrabit <https://www.terrabit.ro>`_:

* Dorin Hongu <dhongu@gmail.com>



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

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

This module is part of the `dhongu/l10n-romania <https://github.com/dhongu/l10n-romania/tree/15.0/l10n_ro_parallel_valuation>`_ project on GitHub.

You are welcome to contribute.
5 changes: 5 additions & 0 deletions l10n_ro_parallel_valuation/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# © 2023-now Deltatech
# Dorin Hongu <dhongu(@)gmail(.)com
# See README.rst file on addons root folder for license details

from . import models
15 changes: 15 additions & 0 deletions l10n_ro_parallel_valuation/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# © 2023-now Deltatech
# Dorin Hongu <dhongu(@)gmail(.)com
# See README.rst file on addons root folder for license details

{
"name": "Romania - Parallel Stock Valuation",
"summary": "Localizare Terrabit - Evaluare stoc",
"version": "15.0.0.0.1",
"author": "Dorin Hongu," "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-romania",
"license": "AGPL-3",
"category": "Stock",
"depends": ["stock_account"],
"data": [],
}
5 changes: 5 additions & 0 deletions l10n_ro_parallel_valuation/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# © 2023-now Deltatech
# Dorin Hongu <dhongu(@)gmail(.)com
# See README.rst file on addons root folder for license details

from . import stock_valuation_layer
12 changes: 12 additions & 0 deletions l10n_ro_parallel_valuation/models/stock_valuation_layer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# © 2023-now Deltatech
# Dorin Hongu <dhongu(@)gmail(.)com
# See README.rst file on addons root folder for license details


from odoo import fields, models


class StockValuationLayer(models.Model):
_inherit = "stock.valuation.layer"

active = fields.Boolean(default=True)
7 changes: 7 additions & 0 deletions l10n_ro_parallel_valuation/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* `Terrabit <https://www.terrabit.ro>`_:

* Dorin Hongu <dhongu@gmail.com>



Do not contact contributors directly about support or help with technical issues.
2 changes: 2 additions & 0 deletions l10n_ro_parallel_valuation/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Functionalitati
- camp "active" in SVL
Loading

0 comments on commit 08ce1fd

Please sign in to comment.