Skip to content

Commit 7447fb0

Browse files
committed
[ADD] purchase_service_picking: New module
TT52524
1 parent bddea26 commit 7447fb0

30 files changed

+3927
-0
lines changed

purchase_service_picking/README.rst

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
========================
2+
Purchase service picking
3+
========================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:9932b4c4a1a3857b71ceb81a1ed61b9da72e66cd23aff07f428b82f6fd7a6546
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpurchase--workflow-lightgray.png?logo=github
20+
:target: https://github.com/OCA/purchase-workflow/tree/14.0/purchase_service_picking
21+
:alt: OCA/purchase-workflow
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/purchase-workflow-14-0/purchase-workflow-14-0-purchase_service_picking
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=14.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
The module allows to manage the reception of service lines for purchase orders.
32+
33+
**Table of contents**
34+
35+
.. contents::
36+
:local:
37+
38+
Bug Tracker
39+
===========
40+
41+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-workflow/issues>`_.
42+
In case of trouble, please check there if your issue has already been reported.
43+
If you spotted it first, help us to smash it by providing a detailed and welcomed
44+
`feedback <https://github.com/OCA/purchase-workflow/issues/new?body=module:%20purchase_service_picking%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
45+
46+
Do not contact contributors directly about support or help with technical issues.
47+
48+
Credits
49+
=======
50+
51+
Authors
52+
~~~~~~~
53+
54+
* Tecnativa
55+
56+
Contributors
57+
~~~~~~~~~~~~
58+
59+
* `Tecnativa <https://www.tecnativa.com>`_:
60+
61+
* Víctor Martínez
62+
* Pedro M. Baeza
63+
64+
Maintainers
65+
~~~~~~~~~~~
66+
67+
This module is maintained by the OCA.
68+
69+
.. image:: https://odoo-community.org/logo.png
70+
:alt: Odoo Community Association
71+
:target: https://odoo-community.org
72+
73+
OCA, or the Odoo Community Association, is a nonprofit organization whose
74+
mission is to support the collaborative development of Odoo features and
75+
promote its widespread use.
76+
77+
.. |maintainer-victoralmau| image:: https://github.com/victoralmau.png?size=40px
78+
:target: https://github.com/victoralmau
79+
:alt: victoralmau
80+
81+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
82+
83+
|maintainer-victoralmau|
84+
85+
This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/14.0/purchase_service_picking>`_ project on GitHub.
86+
87+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

purchase_service_picking/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import models
2+
from . import wizards
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright 2025 Tecnativa - Víctor Martínez
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
3+
4+
{
5+
"name": "Purchase service picking",
6+
"version": "14.0.1.0.0",
7+
"category": "Purchase",
8+
"author": "Tecnativa, Odoo Community Association (OCA)",
9+
"website": "https://github.com/OCA/purchase-workflow",
10+
"license": "AGPL-3",
11+
"depends": ["purchase"],
12+
"maintainers": ["victoralmau"],
13+
"data": [
14+
"security/ir.model.access.csv",
15+
"security/security.xml",
16+
"data/ir_sequence_data.xml",
17+
"views/purchase_order_views.xml",
18+
"wizards/service_picking_return_views.xml",
19+
"views/service_picking_views.xml",
20+
"wizards/service_immediate_transfer_views.xml",
21+
"wizards/service_backorder_confirmation_views.xml",
22+
],
23+
"installable": True,
24+
"auto_install": False,
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<odoo noupdate="1">
3+
<record id="sequence_service_picking" model="ir.sequence">
4+
<field name="name">Service picking</field>
5+
<field name="code">service.picking</field>
6+
<field name="prefix">SP/</field>
7+
<field name="padding">5</field>
8+
<field name="number_next">1</field>
9+
<field name="number_increment">1</field>
10+
<field name="company_id" eval="False" />
11+
</record>
12+
</odoo>

0 commit comments

Comments
 (0)