Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIG][16.0] account_check #22

Open
wants to merge 11 commits into
base: 16.0
Choose a base branch
from
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
Binary file added account_check/ANALISIS CHEQUES.ods
Binary file not shown.
6 changes: 6 additions & 0 deletions account_check/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
##############################################################################
# For copyright and license notices, see __manifest__.py file in module root
# directory
##############################################################################
from . import models
from . import wizard
36 changes: 36 additions & 0 deletions account_check/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
'name': 'Account Check Management',
'version': '16.0.1.0.0',
'category': 'Accounting',
'summary': 'Accounting, Payment, Check, Third, Issue',
'website': 'www.codequarters.com',
'author': 'CODEQUARTERS',
'license': 'AGPL-3',
'images': [
],
'depends': [
'account',
'account_payment_fix',
# TODO we should move field amount_company_currency to
# account_payment_fix so that we dont need to depend on
# account_payment_group
],
'data': [
'data/account_payment_method_data.xml',
#'data/ir_actions_server_data.xml',
'wizard/account_check_action_wizard_view.xml',
'wizard/print_pre_numbered_checks_view.xml',
'views/res_config_settings_view.xml',
'views/account_payment_view.xml',
'views/account_check_view.xml',
'views/account_journal_dashboard_view.xml',
'views/account_journal_view.xml',
'views/account_checkbook_view.xml',
# 'views/account_chart_template_view.xml',
'security/ir.model.access.csv',
'security/account_check_security.xml',
],
'installable': True,
'auto_install': False,
'application': True,
}
26 changes: 26 additions & 0 deletions account_check/data/account_payment_method_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">

<record id="account_payment_method_received_third_check" model="account.payment.method">
<field name="name">Received Third Check</field>
<field name="code">received_third_check</field>
<field name="payment_type">inbound</field>
</record>

<record id="account_payment_method_delivered_third_check" model="account.payment.method">
<field name="name">Delivered Third Check</field>
<field name="code">delivered_third_check</field>
<field name="payment_type">outbound</field>
</record>

<record id="account_payment_method_issue_check" model="account.payment.method">
<field name="name">Issue Check</field>
<field name="code">issue_check</field>
<field name="payment_type">outbound</field>
</record>

<!-- <function model="account.journal" name="_enable_issue_check_on_bank_journals"/>-->

</data>
</odoo>
Loading