Skip to content

Commit

Permalink
[14.0][ADD] purchase_requisition_sequence_option
Browse files Browse the repository at this point in the history
  • Loading branch information
ps-tubtim committed Sep 26, 2023
1 parent d8bf34a commit 8583869
Show file tree
Hide file tree
Showing 16 changed files with 675 additions and 0 deletions.
92 changes: 92 additions & 0 deletions purchase_requisition_sequence_option/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
==================================
Purchase Agreement Sequence Option
==================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:d997e8406f9df080383be8f60c3f7cd02ab485bffc2e4978c5e28804c7d01047
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |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-OCA%2Fpurchase--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/purchase-workflow/tree/14.0/purchase_requisition_sequence_option
:alt: OCA/purchase-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/purchase-workflow-14-0/purchase-workflow-14-0-purchase_requisition_sequence_option
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/purchase-workflow&target_branch=14.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module extends module ir_sequence_option and allow you to
provide optional sequences for purchase.requisition documents.

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/purchase-workflow/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/OCA/purchase-workflow/issues/new?body=module:%20purchase_requisition_sequence_option%0Aversion:%2014.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
~~~~~~~

* Ecosoft

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

* `Ecosoft <http://ecosoft.co.th>`__:

* Pimolnat Suntian <pimolnats@ecosoft.co.th>

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

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-ps-tubtim| image:: https://github.com/ps-tubtim.png?size=40px
:target: https://github.com/ps-tubtim
:alt: ps-tubtim

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-ps-tubtim|

This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/14.0/purchase_requisition_sequence_option>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions purchase_requisition_sequence_option/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import models
18 changes: 18 additions & 0 deletions purchase_requisition_sequence_option/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2023 Ecosoft Co., Ltd. (https://ecosoft.co.th)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Purchase Agreement Sequence Option",
"summary": "Manage sequence options for purchase.requisition",
"version": "14.0.1.0.0",
"license": "AGPL-3",
"author": "Ecosoft, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/purchase-workflow",
"category": "Purchase Management",
"depends": ["base_sequence_option", "purchase_requisition"],
"data": ["data/purchase_requisition_sequence_option.xml"],
"demo": ["demo/purchase_requisition_demo_options.xml"],
"development_status": "Alpha",
"maintainers": ["ps-tubtim"],
"installable": True,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">

<record id="purchase_requisition_sequence_option" model="ir.sequence.option">
<field name="name">Purchase Agreement</field>
<field name="model">purchase.requisition</field>
<field name="use_sequence_option" eval="False" />
</record>

</odoo>
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>

<record id="seq_purchase_requisition_option_1" model="ir.sequence">
<field name="name">Purchase Agreement: Option 1</field>
<field name="padding" eval="5" />
<field name="prefix">TE-1/</field>
</record>

<record
id="purchase_requisition_sequence_option_line_1"
model="ir.sequence.option.line"
>
<field
name="base_id"
ref="purchase_requisition_sequence_option.purchase_requisition_sequence_option"
/>
<field name="name">TE Option 1</field>
<field name="filter_domain">[]</field>
<field
name="sequence_id"
ref="purchase_requisition_sequence_option.seq_purchase_requisition_option_1"
/>
</record>

</odoo>
4 changes: 4 additions & 0 deletions purchase_requisition_sequence_option/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import purchase_requisition
from . import sequence_option
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2023 Ecosoft Co., Ltd. (https://ecosoft.co.th)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import models


class PurchaseRequisition(models.Model):
_inherit = "purchase.requisition"

def action_in_progress(self):
self.ensure_one()
seq = self.env["ir.sequence.option.line"].get_sequence(self)
self = self.with_context(sequence_option_id=seq.id)
return super().action_in_progress()
13 changes: 13 additions & 0 deletions purchase_requisition_sequence_option/models/sequence_option.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2023 Ecosoft Co., Ltd. (https://ecosoft.co.th)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import fields, models


class IrSequenceOption(models.Model):
_inherit = "ir.sequence.option"

model = fields.Selection(
selection_add=[("purchase.requisition", "purchase.requisition")],
ondelete={"purchase.requisition": "cascade"},
)
3 changes: 3 additions & 0 deletions purchase_requisition_sequence_option/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* `Ecosoft <http://ecosoft.co.th>`__:

* Pimolnat Suntian <pimolnats@ecosoft.co.th>
2 changes: 2 additions & 0 deletions purchase_requisition_sequence_option/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This module extends module ir_sequence_option and allow you to
provide optional sequences for purchase.requisition documents.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8583869

Please sign in to comment.