odoo-addon-l10n-ro-stock-price-difference 15.0.5.6.0__py3-none-any.whl → 15.0.5.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/l10n_ro_stock_price_difference/README.rst +2 -1
- odoo/addons/l10n_ro_stock_price_difference/__manifest__.py +1 -1
- odoo/addons/l10n_ro_stock_price_difference/models/account_move.py +1 -1
- odoo/addons/l10n_ro_stock_price_difference/readme/DESCRIPTION.rst +1 -0
- odoo/addons/l10n_ro_stock_price_difference/static/description/index.html +10 -7
- {odoo_addon_l10n_ro_stock_price_difference-15.0.5.6.0.dist-info → odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info}/METADATA +4 -6
- {odoo_addon_l10n_ro_stock_price_difference-15.0.5.6.0.dist-info → odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info}/RECORD +9 -9
- {odoo_addon_l10n_ro_stock_price_difference-15.0.5.6.0.dist-info → odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info}/WHEEL +1 -1
- {odoo_addon_l10n_ro_stock_price_difference-15.0.5.6.0.dist-info → odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info}/top_level.txt +0 -0
@@ -7,7 +7,7 @@ Romania - Stock Accounting Price Difference
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
8
8
|
!! changes will be overwritten. !!
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
-
!! source digest: sha256:
|
10
|
+
!! source digest: sha256:0d9f0eea1dd357170adebec0ec5f8b3d99eaae385f63dd8a5b760c0039daed28
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
@@ -29,6 +29,7 @@ Romania - Stock Accounting Price Difference
|
|
29
29
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
30
30
|
|
31
31
|
The module is managing price diferences between invoices and receptions. It will create a landed cost with a "Price Difference" product available in the configuration.
|
32
|
+
***The price diference does not apply to receptions of products with a BOM (Bill of Materials).***
|
32
33
|
|
33
34
|
**Table of contents**
|
34
35
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
3
|
{
|
4
4
|
"name": "Romania - Stock Accounting Price Difference",
|
5
|
-
"version": "15.0.5.
|
5
|
+
"version": "15.0.5.8.0",
|
6
6
|
"category": "Localization",
|
7
7
|
"summary": "Romania - Stock Accounting Price Difference",
|
8
8
|
"author": "NextERP Romania," "Dorin Hongu," "Odoo Community Association (OCA)",
|
@@ -59,7 +59,7 @@ class AccountMove(models.Model):
|
|
59
59
|
{
|
60
60
|
"invoice_id": self.id,
|
61
61
|
"product_id": stock_move.product_id.id,
|
62
|
-
"picking_id":
|
62
|
+
"picking_id": stock_move.picking_id.id,
|
63
63
|
"amount_difference": line.currency_id.round(
|
64
64
|
price_diff / move_count
|
65
65
|
),
|
@@ -1,4 +1,3 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
2
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
3
|
<head>
|
@@ -9,10 +8,11 @@
|
|
9
8
|
|
10
9
|
/*
|
11
10
|
:Author: David Goodger (goodger@python.org)
|
12
|
-
:Id: $Id: html4css1.css
|
11
|
+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
13
12
|
:Copyright: This stylesheet has been placed in the public domain.
|
14
13
|
|
15
14
|
Default cascading style sheet for the HTML output of Docutils.
|
15
|
+
Despite the name, some widely supported CSS2 features are used.
|
16
16
|
|
17
17
|
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
18
18
|
customize this style sheet.
|
@@ -275,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
|
275
275
|
margin-left: 2em ;
|
276
276
|
margin-right: 2em }
|
277
277
|
|
278
|
-
pre.code .ln { color:
|
278
|
+
pre.code .ln { color: gray; } /* line numbers */
|
279
279
|
pre.code, code { background-color: #eeeeee }
|
280
280
|
pre.code .comment, code .comment { color: #5C6576 }
|
281
281
|
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
@@ -301,7 +301,7 @@ span.option {
|
|
301
301
|
span.pre {
|
302
302
|
white-space: pre }
|
303
303
|
|
304
|
-
span.problematic {
|
304
|
+
span.problematic, pre.problematic {
|
305
305
|
color: red }
|
306
306
|
|
307
307
|
span.section-subtitle {
|
@@ -367,10 +367,11 @@ ul.auto-toc {
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
368
368
|
!! changes will be overwritten. !!
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
370
|
-
!! source digest: sha256:
|
370
|
+
!! source digest: sha256:0d9f0eea1dd357170adebec0ec5f8b3d99eaae385f63dd8a5b760c0039daed28
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/l10n-romania/tree/15.0/l10n_ro_stock_price_difference"><img alt="OCA/l10n-romania" src="https://img.shields.io/badge/github-OCA%2Fl10n--romania-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/l10n-romania-15-0/l10n-romania-15-0-l10n_ro_stock_price_difference"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/l10n-romania&target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
373
|
-
<p>The module is managing price diferences between invoices and receptions. It will create a landed cost with a “Price Difference” product available in the configuration
|
373
|
+
<p>The module is managing price diferences between invoices and receptions. It will create a landed cost with a “Price Difference” product available in the configuration.
|
374
|
+
<strong>*The price diference does not apply to receptions of products with a BOM (Bill of Materials).*</strong></p>
|
374
375
|
<p><strong>Table of contents</strong></p>
|
375
376
|
<div class="contents local topic" id="contents">
|
376
377
|
<ul class="simple">
|
@@ -418,7 +419,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
418
419
|
<div class="section" id="maintainers">
|
419
420
|
<h2><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h2>
|
420
421
|
<p>This module is maintained by the OCA.</p>
|
421
|
-
<a class="reference external image-reference" href="https://odoo-community.org"
|
422
|
+
<a class="reference external image-reference" href="https://odoo-community.org">
|
423
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
424
|
+
</a>
|
422
425
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
423
426
|
mission is to support the collaborative development of Odoo features and
|
424
427
|
promote its widespread use.</p>
|
@@ -1,12 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
|
-
Name: odoo-addon-
|
3
|
-
Version: 15.0.5.
|
2
|
+
Name: odoo-addon-l10n_ro_stock_price_difference
|
3
|
+
Version: 15.0.5.8.0
|
4
4
|
Summary: Romania - Stock Accounting Price Difference
|
5
5
|
Home-page: https://github.com/OCA/l10n-romania
|
6
6
|
Author: NextERP Romania,Dorin Hongu,Odoo Community Association (OCA)
|
7
7
|
Author-email: support@odoo-community.org
|
8
8
|
License: AGPL-3
|
9
|
-
Platform: UNKNOWN
|
10
9
|
Classifier: Programming Language :: Python
|
11
10
|
Classifier: Framework :: Odoo
|
12
11
|
Classifier: Framework :: Odoo :: 15.0
|
@@ -25,7 +24,7 @@ Romania - Stock Accounting Price Difference
|
|
25
24
|
!! This file is generated by oca-gen-addon-readme !!
|
26
25
|
!! changes will be overwritten. !!
|
27
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
28
|
-
!! source digest: sha256:
|
27
|
+
!! source digest: sha256:0d9f0eea1dd357170adebec0ec5f8b3d99eaae385f63dd8a5b760c0039daed28
|
29
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
30
29
|
|
31
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
@@ -47,6 +46,7 @@ Romania - Stock Accounting Price Difference
|
|
47
46
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
48
47
|
|
49
48
|
The module is managing price diferences between invoices and receptions. It will create a landed cost with a "Price Difference" product available in the configuration.
|
49
|
+
***The price diference does not apply to receptions of products with a BOM (Bill of Materials).***
|
50
50
|
|
51
51
|
**Table of contents**
|
52
52
|
|
@@ -118,5 +118,3 @@ Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:
|
|
118
118
|
This module is part of the `OCA/l10n-romania <https://github.com/OCA/l10n-romania/tree/15.0/l10n_ro_stock_price_difference>`_ project on GitHub.
|
119
119
|
|
120
120
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
121
|
-
|
122
|
-
|
@@ -1,17 +1,17 @@
|
|
1
|
-
odoo/addons/l10n_ro_stock_price_difference/README.rst,sha256=
|
1
|
+
odoo/addons/l10n_ro_stock_price_difference/README.rst,sha256=QxZyOAbHajYhNH8PAxKJ0RjaulaJ0ex7FC8iuMDnMoQ,4013
|
2
2
|
odoo/addons/l10n_ro_stock_price_difference/__init__.py,sha256=R3l5zcM1DHY7iqr3kt92069kmImpPafRbNSzv6p_hBE,42
|
3
|
-
odoo/addons/l10n_ro_stock_price_difference/__manifest__.py,sha256=
|
3
|
+
odoo/addons/l10n_ro_stock_price_difference/__manifest__.py,sha256=HxACoBpZZChsUb62RANljLTKvRMCYEj2oL_8rFk_rQg,785
|
4
4
|
odoo/addons/l10n_ro_stock_price_difference/i18n/l10n_ro_stock_price_difference.pot,sha256=9NI5VZ-ktrW1lbzFvHTIuG2AVEAhwPBn03RK-DZdCGQ,6781
|
5
5
|
odoo/addons/l10n_ro_stock_price_difference/migrations/15.0.5.4.1/pre-migration.py,sha256=cXgeRsSdrg-EaHESj7jSF1S5Lq2vku5mdQZ51onsQeo,615
|
6
6
|
odoo/addons/l10n_ro_stock_price_difference/models/__init__.py,sha256=IziDGW2M2uyUtaLJGSWQsaF6Zz4Qxrtvu9emLMLoEpI,91
|
7
|
-
odoo/addons/l10n_ro_stock_price_difference/models/account_move.py,sha256=
|
7
|
+
odoo/addons/l10n_ro_stock_price_difference/models/account_move.py,sha256=uQmcKQCUeutimLYGKEN5LDO12CIDs11uAwC3pUooI9E,4841
|
8
8
|
odoo/addons/l10n_ro_stock_price_difference/models/account_move_line.py,sha256=dQnXCgNMHdgRU31YAfXF3NOMjfquERfbzvcagHgTx2o,6254
|
9
9
|
odoo/addons/l10n_ro_stock_price_difference/models/stock_landed_cost.py,sha256=4gRotUV448LZFO780umrFig8jjrIxnTn2vIJsUYd69c,599
|
10
10
|
odoo/addons/l10n_ro_stock_price_difference/readme/CONTRIBUTORS.rst,sha256=imooaJThv-eiLh7K10cko5NoFQKfEbaU4OcGDn9WKqM,301
|
11
|
-
odoo/addons/l10n_ro_stock_price_difference/readme/DESCRIPTION.rst,sha256=
|
11
|
+
odoo/addons/l10n_ro_stock_price_difference/readme/DESCRIPTION.rst,sha256=PR-zPK3gA_y-m6-hlG_NMldEMPRFe_m8zRcMvR1hnRM,266
|
12
12
|
odoo/addons/l10n_ro_stock_price_difference/security/ir.model.access.csv,sha256=ZW8flyD2rMqHfAn8i0rGfCne0MHB72OzTWPZ4D9nN5U,361
|
13
13
|
odoo/addons/l10n_ro_stock_price_difference/static/description/icon.png,sha256=4CdJJFOkYuQjQGn_jXFOHNUE5NGjg6NQRW1lpQ7j4o4,3173
|
14
|
-
odoo/addons/l10n_ro_stock_price_difference/static/description/index.html,sha256=
|
14
|
+
odoo/addons/l10n_ro_stock_price_difference/static/description/index.html,sha256=vdwcrNCZd6_3J0IzLlsLQ_iNm-CQApZFkCJ12OXDP9U,13669
|
15
15
|
odoo/addons/l10n_ro_stock_price_difference/tests/__init__.py,sha256=PcHbRHAWEYgzNHB4jfqDxzRCYr22mPq6ZOI621w2seE,121
|
16
16
|
odoo/addons/l10n_ro_stock_price_difference/tests/common.py,sha256=Y-Sj9yqArm2n0pKqcIe4-d7YaJ7nMk4Hr8qLj3akpEc,1209
|
17
17
|
odoo/addons/l10n_ro_stock_price_difference/tests/test_purchase.py,sha256=RcIFEJOHJerGJDVRqVegRi7lwWc87J7fIDnxxzPprxY,11307
|
@@ -21,7 +21,7 @@ odoo/addons/l10n_ro_stock_price_difference/tests/test_sale.py,sha256=GKl253rDrnd
|
|
21
21
|
odoo/addons/l10n_ro_stock_price_difference/wizard/__init__.py,sha256=c6_T4TE-Z_2FeKUsIDsq8aRC2I9ITMIJ-4WTt9Kz9og,44
|
22
22
|
odoo/addons/l10n_ro_stock_price_difference/wizard/price_difference_confirmation.py,sha256=N8C1C-EbMQVLm3gHgkavhCV_1zl1vg5Lq4FNUxZG7VM,1301
|
23
23
|
odoo/addons/l10n_ro_stock_price_difference/wizard/price_difference_confirmation.xml,sha256=GSszGCpYsLCJ6erqdS7oTF9EaIe25QP-QkKXopoLRig,1682
|
24
|
-
odoo_addon_l10n_ro_stock_price_difference-15.0.5.
|
25
|
-
odoo_addon_l10n_ro_stock_price_difference-15.0.5.
|
26
|
-
odoo_addon_l10n_ro_stock_price_difference-15.0.5.
|
27
|
-
odoo_addon_l10n_ro_stock_price_difference-15.0.5.
|
24
|
+
odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info/METADATA,sha256=B-g7JeyQC5SdBCLabquvGuJu8WsxAJszen5hrvD4vcU,4696
|
25
|
+
odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
26
|
+
odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
27
|
+
odoo_addon_l10n_ro_stock_price_difference-15.0.5.8.0.dist-info/RECORD,,
|