-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit introduces the "Expenses Deduction" module to the Deltatech suite. It provides functionality for managing expense reports, validations, and journal entries. The implementation includes views, reports, translations, and all necessary dependencies for integration into the Odoo framework.
- Loading branch information
Showing
23 changed files
with
2,384 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
================== | ||
Expenses Deduction | ||
================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:2f8ff1ce3fe6012564c39fb1ab47a932b08faf5cb478ef9d86623b07a464def4 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Mature | ||
.. |badge2| image:: https://img.shields.io/badge/licence-OPL--1-blue.png | ||
:target: https://www.odoo.com/documentation/master/legal/licenses.html | ||
:alt: License: OPL-1 | ||
.. |badge3| image:: https://img.shields.io/badge/github-dhongu%2Fdeltatech-lightgray.png?logo=github | ||
:target: https://github.com/dhongu/deltatech/tree/17.0/deltatech_expenses | ||
:alt: dhongu/deltatech | ||
|
||
|badge1| |badge2| |badge3| | ||
|
||
Features: | ||
|
||
- Introducerea decontului de cheltuieli intr-un document distict ce | ||
genereaza automat chitante de achizitie | ||
- Validarea documentului duce la generarea notelor contabile de avans | ||
si inegistrarea platilor | ||
|
||
In registrul de numerat trebue completat campul Cash advances cu 542. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `Terrabit Issues <https://www.terrabit.ro/helpdesk>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* Terrabit | ||
* Dorin Hongu | ||
|
||
Maintainers | ||
----------- | ||
|
||
.. |maintainer-dhongu| image:: https://github.com/dhongu.png?size=40px | ||
:target: https://github.com/dhongu | ||
:alt: dhongu | ||
|
||
Current maintainer: | ||
|
||
|maintainer-dhongu| | ||
|
||
This module is part of the `dhongu/deltatech <https://github.com/dhongu/deltatech/tree/17.0/deltatech_expenses>`_ project on GitHub. | ||
|
||
You are welcome to contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# © 2008-2021 Deltatech | ||
# See README.rst file on addons root folder for license details | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# © 2008-2021 Deltatech | ||
# See README.rst file on addons root folder for license details | ||
|
||
|
||
{ | ||
"name": "Expenses Deduction", | ||
"summary": "Expenses Deduction & Disposition of Cashing", | ||
"version": "17.0.2.0.0", | ||
"category": "Accounting & Finance", | ||
"author": "Terrabit, Dorin Hongu", | ||
"website": "https://www.terrabit.ro", | ||
"depends": [ | ||
"l10n_ro", | ||
"account", | ||
"product", | ||
"deltatech_partner_generic", | ||
# "deltatech_payment_to_statement", | ||
], | ||
"license": "OPL-1", | ||
"data": [ | ||
"views/deltatech_expenses_deduction_view.xml", | ||
"views/deltatech_expenses_deduction_report.xml", | ||
"views/report_expenses.xml", | ||
"views/account_journal_view.xml", | ||
"security/ir.model.access.csv", | ||
"security/security.xml", | ||
"data/data.xml", | ||
], | ||
"images": ["images/main_screenshot.png"], | ||
"development_status": "Mature", | ||
"maintainers": ["dhongu"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<data noupdate="1"> | ||
<record id="sequence_expenses_deduction" model="ir.sequence"> | ||
<field name="name">Expenses Deduction</field> | ||
<field name="prefix">DEC/</field> | ||
<field name="padding">5</field> | ||
<field name="number_next">1</field> | ||
<field name="number_increment">1</field> | ||
</record> | ||
</data> | ||
</odoo> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.