odoo-addon-account-invoice-line-sale-line-position 18.0.1.0.0.7__py3-none-any.whl → 18.0.1.0.1__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.
@@ -1,3 +1,7 @@
1
+ .. image:: https://odoo-community.org/readme-banner-image
2
+ :target: https://odoo-community.org/get-involved?utm_source=readme
3
+ :alt: Odoo Community Association
4
+
1
5
  =======================================
2
6
  Account Invoice Line Sale Line Position
3
7
  =======================================
@@ -7,13 +11,13 @@ Account Invoice Line Sale Line Position
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:a81097a1402101c909076993a4e4c52a63d173a22bcc1f8d90be9a8dd4e678c9
14
+ !! source digest: sha256:4ebefc13950f175f0a4e6e4b07ff838a6a6746ccf10e02afc9ba094a57bb6fdf
11
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
16
 
13
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14
18
  :target: https://odoo-community.org/page/development-status
15
19
  :alt: Beta
16
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
20
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
17
21
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
22
  :alt: License: AGPL-3
19
23
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github
@@ -4,7 +4,7 @@
4
4
  {
5
5
  "name": "Account Invoice Line Sale Line Position",
6
6
  "summary": "Adds the related sale line position on invoice line.",
7
- "version": "18.0.1.0.0",
7
+ "version": "18.0.1.0.1",
8
8
  "category": "Sale",
9
9
  "author": "Camptocamp, Odoo Community Association (OCA)",
10
10
  "license": "AGPL-3",
@@ -6,37 +6,39 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: Odoo Server 18.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
- "Last-Translator: Automatically generated\n"
9
+ "PO-Revision-Date: 2025-09-02 22:43+0000\n"
10
+ "Last-Translator: Tamer Sezgin <tamer.sezgin@gmail.com>\n"
10
11
  "Language-Team: none\n"
11
12
  "Language: tr\n"
12
13
  "MIME-Version: 1.0\n"
13
14
  "Content-Type: text/plain; charset=UTF-8\n"
14
15
  "Content-Transfer-Encoding: \n"
15
16
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Weblate 5.10.4\n"
16
18
 
17
19
  #. module: account_invoice_line_sale_line_position
18
20
  #: model:ir.model.fields,field_description:account_invoice_line_sale_line_position.field_account_bank_statement_line__has_order_position
19
21
  #: model:ir.model.fields,field_description:account_invoice_line_sale_line_position.field_account_move__has_order_position
20
22
  msgid "Has Order Position"
21
- msgstr ""
23
+ msgstr "Sipariş Konumu Var"
22
24
 
23
25
  #. module: account_invoice_line_sale_line_position
24
26
  #: model:ir.model,name:account_invoice_line_sale_line_position.model_account_move
25
27
  msgid "Journal Entry"
26
- msgstr ""
28
+ msgstr "Yevmiye Kaydı"
27
29
 
28
30
  #. module: account_invoice_line_sale_line_position
29
31
  #: model:ir.model,name:account_invoice_line_sale_line_position.model_account_move_line
30
32
  msgid "Journal Item"
31
- msgstr ""
33
+ msgstr "Yevmiye Kalemi"
32
34
 
33
35
  #. module: account_invoice_line_sale_line_position
34
36
  #: model_terms:ir.ui.view,arch_db:account_invoice_line_sale_line_position.report_invoice_document
35
37
  #: model_terms:ir.ui.view,arch_db:account_invoice_line_sale_line_position.view_move_form
36
38
  msgid "Pos"
37
- msgstr ""
39
+ msgstr "Sıra"
38
40
 
39
41
  #. module: account_invoice_line_sale_line_position
40
42
  #: model:ir.model.fields,field_description:account_invoice_line_sale_line_position.field_account_move_line__position_formatted
41
43
  msgid "Position Formatted"
42
- msgstr ""
44
+ msgstr "Formatlı Konum"
@@ -25,11 +25,10 @@ class AccountMoveLine(models.Model):
25
25
  @api.depends("sale_line_ids.position")
26
26
  def _compute_position_formatted(self):
27
27
  for record in self:
28
- if record.display_type:
28
+ if record.display_type != "product":
29
29
  record.position_formatted = ""
30
30
  continue
31
- values = [
32
- val for val in record.sale_line_ids.mapped("position_formatted") if val
33
- ]
34
-
35
- record.position_formatted = "/".join(values)
31
+ values = [
32
+ val for val in record.sale_line_ids.mapped("position_formatted") if val
33
+ ]
34
+ record.position_formatted = "/".join(values)
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
6
- <title>Account Invoice Line Sale Line Position</title>
6
+ <title>README.rst</title>
7
7
  <style type="text/css">
8
8
 
9
9
  /*
@@ -360,16 +360,21 @@ ul.auto-toc {
360
360
  </style>
361
361
  </head>
362
362
  <body>
363
- <div class="document" id="account-invoice-line-sale-line-position">
364
- <h1 class="title">Account Invoice Line Sale Line Position</h1>
363
+ <div class="document">
365
364
 
365
+
366
+ <a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367
+ <img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368
+ </a>
369
+ <div class="section" id="account-invoice-line-sale-line-position">
370
+ <h1>Account Invoice Line Sale Line Position</h1>
366
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367
372
  !! This file is generated by oca-gen-addon-readme !!
368
373
  !! changes will be overwritten. !!
369
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:a81097a1402101c909076993a4e4c52a63d173a22bcc1f8d90be9a8dd4e678c9
375
+ !! source digest: sha256:4ebefc13950f175f0a4e6e4b07ff838a6a6746ccf10e02afc9ba094a57bb6fdf
371
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
- <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.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/account-invoice-reporting/tree/18.0/account_invoice_line_sale_line_position"><img alt="OCA/account-invoice-reporting" src="https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-invoice-reporting-18-0/account-invoice-reporting-18-0-account_invoice_line_sale_line_position"><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/account-invoice-reporting&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
377
+ <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-invoice-reporting/tree/18.0/account_invoice_line_sale_line_position"><img alt="OCA/account-invoice-reporting" src="https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-invoice-reporting-18-0/account-invoice-reporting-18-0-account_invoice_line_sale_line_position"><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/account-invoice-reporting&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
378
  <p>This module is build on top of the module sale_order_line_position.</p>
374
379
  <p>It adds (if any) the sale line position on the invoice line. There can
375
380
  be multiple positions for one invoicing line. And they are added to the
@@ -388,7 +393,7 @@ report.</p>
388
393
  </ul>
389
394
  </div>
390
395
  <div class="section" id="bug-tracker">
391
- <h1><a class="toc-backref" href="#toc-entry-1">Bug Tracker</a></h1>
396
+ <h2><a class="toc-backref" href="#toc-entry-1">Bug Tracker</a></h2>
392
397
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-invoice-reporting/issues">GitHub Issues</a>.
393
398
  In case of trouble, please check there if your issue has already been reported.
394
399
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -396,15 +401,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
396
401
  <p>Do not contact contributors directly about support or help with technical issues.</p>
397
402
  </div>
398
403
  <div class="section" id="credits">
399
- <h1><a class="toc-backref" href="#toc-entry-2">Credits</a></h1>
404
+ <h2><a class="toc-backref" href="#toc-entry-2">Credits</a></h2>
400
405
  <div class="section" id="authors">
401
- <h2><a class="toc-backref" href="#toc-entry-3">Authors</a></h2>
406
+ <h3><a class="toc-backref" href="#toc-entry-3">Authors</a></h3>
402
407
  <ul class="simple">
403
408
  <li>Camptocamp</li>
404
409
  </ul>
405
410
  </div>
406
411
  <div class="section" id="contributors">
407
- <h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
412
+ <h3><a class="toc-backref" href="#toc-entry-4">Contributors</a></h3>
408
413
  <ul class="simple">
409
414
  <li>Thierry Ducrest &lt;<a class="reference external" href="mailto:thierry.ducrest&#64;camptocamp.com">thierry.ducrest&#64;camptocamp.com</a>&gt;</li>
410
415
  <li><a class="reference external" href="https://trobz.com">Trobz</a>:<ul>
@@ -417,14 +422,14 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
417
422
  </ul>
418
423
  </div>
419
424
  <div class="section" id="other-credits">
420
- <h2><a class="toc-backref" href="#toc-entry-5">Other credits</a></h2>
425
+ <h3><a class="toc-backref" href="#toc-entry-5">Other credits</a></h3>
421
426
  <p>The migration of this module from 13.0 to 14.0 was financially supported
422
427
  by Camptocamp</p>
423
428
  <p>The migration of this module from 16.0 to 18.0 was financially supported
424
429
  by Camptocamp</p>
425
430
  </div>
426
431
  <div class="section" id="maintainers">
427
- <h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
432
+ <h3><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h3>
428
433
  <p>This module is maintained by the OCA.</p>
429
434
  <a class="reference external image-reference" href="https://odoo-community.org">
430
435
  <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@@ -437,5 +442,6 @@ promote its widespread use.</p>
437
442
  </div>
438
443
  </div>
439
444
  </div>
445
+ </div>
440
446
  </body>
441
447
  </html>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_invoice_line_sale_line_position
3
- Version: 18.0.1.0.0.7
3
+ Version: 18.0.1.0.1
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-sale_order_line_position==18.0.*
6
6
  Requires-Dist: odoo==18.0.*
@@ -13,6 +13,11 @@ Classifier: Programming Language :: Python
13
13
  Classifier: Framework :: Odoo
14
14
  Classifier: Framework :: Odoo :: 18.0
15
15
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
16
+ Description-Content-Type: text/x-rst
17
+
18
+ .. image:: https://odoo-community.org/readme-banner-image
19
+ :target: https://odoo-community.org/get-involved?utm_source=readme
20
+ :alt: Odoo Community Association
16
21
 
17
22
  =======================================
18
23
  Account Invoice Line Sale Line Position
@@ -23,13 +28,13 @@ Account Invoice Line Sale Line Position
23
28
  !! This file is generated by oca-gen-addon-readme !!
24
29
  !! changes will be overwritten. !!
25
30
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:a81097a1402101c909076993a4e4c52a63d173a22bcc1f8d90be9a8dd4e678c9
31
+ !! source digest: sha256:4ebefc13950f175f0a4e6e4b07ff838a6a6746ccf10e02afc9ba094a57bb6fdf
27
32
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
33
 
29
34
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
30
35
  :target: https://odoo-community.org/page/development-status
31
36
  :alt: Beta
32
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
37
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
33
38
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
34
39
  :alt: License: AGPL-3
35
40
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github
@@ -1,24 +1,24 @@
1
- odoo/addons/account_invoice_line_sale_line_position/README.rst,sha256=-l3lV30JPrYhO2MzUEnHpD4saI06aLqWYiQ33xdk6tQ,3675
1
+ odoo/addons/account_invoice_line_sale_line_position/README.rst,sha256=o3FYfDN_fak1oiGC-uZdQyvFGCTEdJsasEkXLiDUWB4,3840
2
2
  odoo/addons/account_invoice_line_sale_line_position/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
3
- odoo/addons/account_invoice_line_sale_line_position/__manifest__.py,sha256=Nz7VL68mv85-pon-fHTSARZbsY2ZJZbd4WCzmBl1tYI,577
3
+ odoo/addons/account_invoice_line_sale_line_position/__manifest__.py,sha256=9-T_YVYnIHNZOaHIL59sqGuNwrjWyYGDGtPSZnwHG94,577
4
4
  odoo/addons/account_invoice_line_sale_line_position/i18n/account_invoice_line_sale_line_position.pot,sha256=19CvQJbIESGmWJtc72mGjtyhD7VER-tcRmYAllUT5kY,1547
5
5
  odoo/addons/account_invoice_line_sale_line_position/i18n/de.po,sha256=64Nb5zNv2Q3WS7qp2pwCZ01qxisUjlGWtCMmf5WVevU,1902
6
6
  odoo/addons/account_invoice_line_sale_line_position/i18n/es.po,sha256=1_RBAEEZANQngJwHWAxUKd1ffQeZPW8xwCFqtJskIQk,1789
7
7
  odoo/addons/account_invoice_line_sale_line_position/i18n/it.po,sha256=x9hq1_o5eWam4-AI4oQhaBdlhHKiKaXaGfPVs6Md8M4,1789
8
8
  odoo/addons/account_invoice_line_sale_line_position/i18n/pt_BR.po,sha256=Jil1FSUANwpr3O9C96rz6TwsNl_ncAhy81hOOZGe5mU,1619
9
- odoo/addons/account_invoice_line_sale_line_position/i18n/tr.po,sha256=lwfrjcMUbAlS-AsBnbac7o0zGFapiJ37tPqcEoPcQ8Q,1617
9
+ odoo/addons/account_invoice_line_sale_line_position/i18n/tr.po,sha256=VwyJffdZCmJlxEwf4QUWJ7XZ-H__FXe-zXB0VAnIxbI,1774
10
10
  odoo/addons/account_invoice_line_sale_line_position/models/__init__.py,sha256=bQkNRiIHrpHzF-638gjXJb-rIrcikJixGxuUUPJk3ZU,30
11
- odoo/addons/account_invoice_line_sale_line_position/models/account_invoice.py,sha256=MuAgZbH3E2Cqf5bnsbQ6K6GHOV6bb5kdpy6XKxaCjU8,1079
11
+ odoo/addons/account_invoice_line_sale_line_position/models/account_invoice.py,sha256=GlST4UAH_pdD75EsBtxKcAUebRHP0oPSJpnaJYn8Oxg,1107
12
12
  odoo/addons/account_invoice_line_sale_line_position/readme/CONTRIBUTORS.md,sha256=OuBEV06Y29pxnRbMOjaerf28IFeRankbzCosfVkNRtM,246
13
13
  odoo/addons/account_invoice_line_sale_line_position/readme/CREDITS.md,sha256=ErsgbDer2RvShMQUPCjZg0GDXhygXwKjMksbMACEMnU,175
14
14
  odoo/addons/account_invoice_line_sale_line_position/readme/DESCRIPTION.md,sha256=0jW4h9SUHOmmyo3a1drHRAG_w2U1j0JwmY-R_urmDKg,220
15
15
  odoo/addons/account_invoice_line_sale_line_position/report/invoice_report.xml,sha256=qwJxI8Rk48KY8gkBKXyJpB9bZubM65AZSR_7dO7S01c,626
16
16
  odoo/addons/account_invoice_line_sale_line_position/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
17
- odoo/addons/account_invoice_line_sale_line_position/static/description/index.html,sha256=WOQBS2jYxjL7D8CPy1h5PsKBgtoI4_BEYhwiCBexVUE,13550
17
+ odoo/addons/account_invoice_line_sale_line_position/static/description/index.html,sha256=-UMC83rysnPyKoRRpAl1U9VByy0KT4kDImmujBFBMpM,13748
18
18
  odoo/addons/account_invoice_line_sale_line_position/tests/__init__.py,sha256=AV5_DSzBvcL_EOClRtiF6I99WhHCBDbZGQp8dpFkfU0,59
19
19
  odoo/addons/account_invoice_line_sale_line_position/tests/test_account_invoice_line_sale_line_position.py,sha256=9JjehkZi_S66_gqP9BqDYsMboKDxHg5_wP8iz-wWXxQ,2166
20
20
  odoo/addons/account_invoice_line_sale_line_position/views/account_move_views.xml,sha256=r6tVionNcifA78gyR_WHTASPT5FsWbzfJuw_yRQvEwM,774
21
- odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.0.7.dist-info/METADATA,sha256=a81Clp9YweNbTx4grBToi72K9h9-H05DZ0j6hZ2IO-4,4307
22
- odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.0.7.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
23
- odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.0.7.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
24
- odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.0.7.dist-info/RECORD,,
21
+ odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.1.dist-info/METADATA,sha256=1zJtUpliXEQ-CLqOym9pztvxL72pKz13veJn9pwHyfw,4507
22
+ odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.1.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
23
+ odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
24
+ odoo_addon_account_invoice_line_sale_line_position-18.0.1.0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: Whool 1.2
2
+ Generator: Whool 1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5