Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 96 additions & 0 deletions hr_expense_meal_allowance/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
=========================
Hr Expense Meal Allowance
=========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:4e23d4e921f97da5d5d0a749271e711a371ccb625726baa51d7983c6d6e20710
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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-OCA%2Fl10n--germany-lightgray.png?logo=github
:target: https://github.com/OCA/l10n-germany/tree/18.0/hr_expense_meal_allowance
:alt: OCA/l10n-germany
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/l10n-germany-18-0/l10n-germany-18-0-hr_expense_meal_allowance
: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/l10n-germany&target_branch=18.0
:alt: Try me on Runboat

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

Adds German "Verpflegungsmehraufwände" processing in the expense module.

When a meal allowance product is selected, the UI is changed as
following. |meal allowance rates| |image1|

| The product tag controls whether the Product is of type meal allowance
and controls the UI.
| |image2|

The rates are imported by a csv file. When a rate changes for a certain
country, create a new csv line and set the expire_on date on the
existing line. |image3|

.. |meal allowance rates| image:: https://raw.githubusercontent.com/OCA/l10n-germany/18.0/hr_expense_meal_allowance/static/description/expense_1.png
.. |image1| image:: https://raw.githubusercontent.com/OCA/l10n-germany/18.0/hr_expense_meal_allowance/static/description/expense_2.png
.. |image2| image:: https://raw.githubusercontent.com/OCA/l10n-germany/18.0/hr_expense_meal_allowance/static/description/product_tag.png
.. |image3| image:: https://raw.githubusercontent.com/OCA/l10n-germany/18.0/hr_expense_meal_allowance/static/description/settings_rates.png

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-germany/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/l10n-germany/issues/new?body=module:%20hr_expense_meal_allowance%0Aversion:%2018.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
-------

* IFE Gesellschaft für Forschung und Entwicklung
* glueckkanja AG

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-CRogos| image:: https://github.com/CRogos.png?size=40px
:target: https://github.com/CRogos
:alt: CRogos

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

|maintainer-CRogos|

This module is part of the `OCA/l10n-germany <https://github.com/OCA/l10n-germany/tree/18.0/hr_expense_meal_allowance>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions hr_expense_meal_allowance/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
25 changes: 25 additions & 0 deletions hr_expense_meal_allowance/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Hr Expense Meal Allowance",
"author": "IFE Gesellschaft für Forschung und Entwicklung, "
"glueckkanja AG, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-germany",
"category": "Human Resources/Expenses",
"license": "AGPL-3",
"summary": "Automatic calculation of expenses",
"version": "18.0.1.1.2",
"depends": ["sale_expense"],
"maintainers": ["CRogos"],
"data": [
"data/product_data.xml",
"data/hr.expense.meal.allowance.rate.csv",
"views/hr_expense_meal_allowance_rate.xml",
"views/hr_expense_meal_allowance.xml",
"views/hr_expense.xml",
"views/product_product.xml",
"security/ir.model.access.csv",
"report/expense_included_meal_report.xml",
"report/expense_included_meal.xml",
],
"installable": True,
"application": False,
}
Loading