Skip to content

Commit

Permalink
[4507][ADD] website_sale_default_warehouse (#223)
Browse files Browse the repository at this point in the history
* [ADD] website_sale_default_warehouse
  • Loading branch information
AungKoKoLin1997 authored Jun 20, 2024
1 parent 54fb751 commit 1f17fda
Show file tree
Hide file tree
Showing 9 changed files with 518 additions and 0 deletions.
52 changes: 52 additions & 0 deletions website_sale_default_warehouse/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
==============================
Website Sale Default Warehouse
==============================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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-qrtl%2Fpci--custom-lightgray.png?logo=github
:target: https://github.com/qrtl/pci-custom/tree/10.0/website_sale_default_warehouse
:alt: qrtl/pci-custom

|badge1| |badge2| |badge3|

This module sets the default warehouse in a sale order originating from website sales.

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/qrtl/pci-custom/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/qrtl/pci-custom/issues/new?body=module:%20website_sale_default_warehouse%0Aversion:%2010.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
~~~~~~~

* Quartile Limited

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

This module is part of the `qrtl/pci-custom <https://github.com/qrtl/pci-custom/tree/10.0/website_sale_default_warehouse>`_ project on GitHub.

You are welcome to contribute.
1 change: 1 addition & 0 deletions website_sale_default_warehouse/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
13 changes: 13 additions & 0 deletions website_sale_default_warehouse/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2024 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Website Sale Default Warehouse",
"version": "10.0.1.0.0",
"category": "Website",
"author": "Quartile Limited",
"license": "AGPL-3",
"website": "https://www.quartile.co",
"depends": ["website_sale_stock",],
"data": ["views/res_company_views.xml"],
"installable": True,
}
2 changes: 2 additions & 0 deletions website_sale_default_warehouse/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import res_company
from . import website
10 changes: 10 additions & 0 deletions website_sale_default_warehouse/models/res_company.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2024 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import fields, models


class ResCompany(models.Model):
_inherit = 'res.company'

default_website_warehouse_id = fields.Many2one("stock.warehouse")
17 changes: 17 additions & 0 deletions website_sale_default_warehouse/models/website.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2024 Quartile Limited
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import api, models


class Website(models.Model):
_inherit = 'website'

@api.multi
def _prepare_sale_order_values(self, partner, pricelist):
values = super(Website, self)._prepare_sale_order_values(partner, pricelist)
if values['company_id']:
warehouse = self.env['res.company'].browse(values['company_id']).default_website_warehouse_id
if warehouse:
values['warehouse_id'] = warehouse.id
return values
1 change: 1 addition & 0 deletions website_sale_default_warehouse/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module sets the default warehouse in a sale order originating from website sales.
Loading

0 comments on commit 1f17fda

Please sign in to comment.