Skip to content

Commit

Permalink
Add new module: Expenses Deduction
Browse files Browse the repository at this point in the history
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
dhongu committed Dec 23, 2024
1 parent 5d13061 commit 074777b
Show file tree
Hide file tree
Showing 23 changed files with 2,384 additions and 0 deletions.
69 changes: 69 additions & 0 deletions deltatech_expenses/README.rst
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.
4 changes: 4 additions & 0 deletions deltatech_expenses/__init__.py
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
32 changes: 32 additions & 0 deletions deltatech_expenses/__manifest__.py
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"],
}
12 changes: 12 additions & 0 deletions deltatech_expenses/data/data.xml
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>
416 changes: 416 additions & 0 deletions deltatech_expenses/data/product_data.xml

Large diffs are not rendered by default.

Loading

0 comments on commit 074777b

Please sign in to comment.