Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
vauxoo-dev
addons-vauxoo
Commits
cd31cb46
Commit
cd31cb46
authored
May 22, 2016
by
Hbto [ Vauxoo ]
Browse files
[REM] aging_due_report got moved to vauxoo/account project
parent
c309ea1f
Changes
25
Expand all
Hide whitespace changes
Inline
Side-by-side
aging_due_report/README.rst
deleted
100644 → 0
View file @
c309ea1f
Customer's Due Report
=====================
This module will allow you to get in Multicurrency:
- A Customer & Supplier Detail Due Report,
- A Customer & Supplier Aging Due Report,
Comming Soon
------------
- A Customer's Formal Due Report,
- A Supplier's Formal Due Report,
aging_due_report/__init__.py
deleted
100644 → 0
View file @
c309ea1f
# coding: utf-8
###########################################################################
# Module Writen to OpenERP, Open Source Management Solution
# Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
# All Rights Reserved
# ##############Credits######################################################
# Coded by: Humberto Arocha <hbto@vauxoo.com>
# Planified by: Rafael Silva <rsilvam@vauxoo.com>
# Audited by: Nhomar Hernandez <nhomar@vauxoo.com>
#############################################################################
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###############################################################################
from
.
import
report
from
.
import
wizard
aging_due_report/__openerp__.py
deleted
100644 → 0
View file @
c309ea1f
# coding: utf-8
###########################################################################
# Module Writen to OpenERP, Open Source Management Solution
# Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
# All Rights Reserved
# ##############Credits######################################################
# Coded by: Humberto Arocha <hbto@vauxoo.com>
# Planified by: Rafael Silva <rsilvam@vauxoo.com>
# Audited by: Nhomar Hernandez <nhomar@vauxoo.com>
#############################################################################
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###############################################################################
{
"name"
:
"Customer's Due Report"
,
"version"
:
"8.0.0.0.6"
,
"author"
:
"Vauxoo"
,
"category"
:
"Generic Modules/Others"
,
"website"
:
"http://www.vauxoo.com/"
,
"license"
:
""
,
"depends"
:
[
"account"
,
"controller_report_xls"
,
],
"demo"
:
[],
"data"
:
[
"data/aging_due_report_paper_format.xml"
,
"data/aging_due_report_style.xml"
,
"report/aging_due_report_qweb.xml"
,
"report/aging_detail_due_report_qweb.xml"
,
"report/detail_due_report_qweb.xml"
,
"report/customer_formal_due_report_qweb.xml"
,
"report/supplier_formal_due_report_qweb.xml"
,
"views/wizard.xml"
,
"views/report.xml"
],
"test"
:
[],
"js"
:
[],
"css"
:
[],
"qweb"
:
[],
"installable"
:
True
,
"auto_install"
:
False
,
"external_dependencies"
:
{
"python"
:
[
'pandas'
,
]
}
}
aging_due_report/data/aging_due_report_paper_format.xml
deleted
100644 → 0
View file @
c309ea1f
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record
id=
"aging_due_report_paperformat_euro"
model=
"report.paperformat"
>
<field
name=
"name"
>
Aging Due Report Paper Portrait Letter
</field>
<field
name=
"default"
eval=
"True"
/>
<field
name=
"format"
>
Letter
</field>
<field
name=
"page_height"
>
0
</field>
<field
name=
"page_width"
>
0
</field>
<field
name=
"orientation"
>
Portrait
</field>
<field
name=
"margin_top"
>
10
</field>
<field
name=
"margin_bottom"
>
23
</field>
<field
name=
"margin_left"
>
7
</field>
<field
name=
"margin_right"
>
7
</field>
<field
name=
"header_line"
eval=
"False"
/>
<field
name=
"header_spacing"
>
10
</field>
<field
name=
"dpi"
>
90
</field>
</record>
<record
id=
"aging_due_report_paperformat_landscape_euro"
model=
"report.paperformat"
>
<field
name=
"name"
>
Aging Due Report Paper Landscape Letter
</field>
<field
name=
"default"
eval=
"True"
/>
<field
name=
"format"
>
Letter
</field>
<field
name=
"page_height"
>
0
</field>
<field
name=
"page_width"
>
0
</field>
<field
name=
"orientation"
>
Landscape
</field>
<field
name=
"margin_top"
>
10
</field>
<field
name=
"margin_bottom"
>
23
</field>
<field
name=
"margin_left"
>
7
</field>
<field
name=
"margin_right"
>
7
</field>
<field
name=
"header_line"
eval=
"False"
/>
<field
name=
"header_spacing"
>
10
</field>
<field
name=
"dpi"
>
90
</field>
</record>
</data>
</openerp>
aging_due_report/data/aging_due_report_style.xml
deleted
100644 → 0
View file @
c309ea1f
This diff is collapsed.
Click to expand it.
aging_due_report/i18n/aging_due_report.pot
deleted
100644 → 0
View file @
c309ea1f
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * aging_due_report
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-20 18:58+0000\n"
"PO-Revision-Date: 2015-05-20 18:58+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
#: view:website:aging_due_report.report_detail_due_report_qweb_document
msgid "•"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "(Future Direction)"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "(Past Direction)"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.currency,aaw_id:0
#: field:account.aging.wizard.document,aaw_id:0
#: field:account.aging.wizard.partner,aaw_id:0
msgid "Account Aging Wizard"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.partner,aawc_id:0
#: model:ir.model,name:aging_due_report.model_account_aging_wizard_currency
msgid "Account Aging Wizard Currency"
msgstr ""
#. module: aging_due_report
#: help:account.aging.wizard.partner,aawc_id:0
msgid "Account Aging Wizard Currency Holder"
msgstr ""
#. module: aging_due_report
#: help:account.aging.wizard.currency,aaw_id:0
#: help:account.aging.wizard.document,aaw_id:0
#: help:account.aging.wizard.partner,aaw_id:0
msgid "Account Aging Wizard Holder"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,aawp_id:0
#: help:account.aging.wizard.document,aawp_id:0
#: model:ir.model,name:aging_due_report.model_account_aging_wizard_partner
msgid "Account Aging Wizard Partner"
msgstr ""
#. module: aging_due_report
#: view:account.aging.wizard:aging_due_report.view_account_aging_partner_report
#: model:ir.actions.act_window,name:aging_due_report.action_account_aging_partner_report
msgid "Aging Partner Reports"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,type:0
msgid "Aging Report"
msgstr ""
#. module: aging_due_report
#: model:ir.actions.report.xml,name:aging_due_report.report_aging_due_report_qweb
msgid "Aging Report of Debts"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
msgid "Amounts expressed in ("
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "BALANCE"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "BASE"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,currency_ids:0
#: help:account.aging.wizard,currency_ids:0
#: help:account.aging.wizard.partner,document_ids:0
msgid "Balance by Currency"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,base:0
msgid "Base"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "Best Regards,"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "C: C/N"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
msgid "COLLECTS"
msgstr ""
#. module: aging_due_report
#: view:account.aging.wizard:aging_due_report.view_account_aging_partner_report
msgid "Cancel"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,company_id:0
#: field:account.aging.wizard.document,company_id:0
msgid "Company"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,create_uid:0
#: field:account.aging.wizard.currency,create_uid:0
#: field:account.aging.wizard.document,create_uid:0
#: field:account.aging.wizard.partner,create_uid:0
msgid "Created by"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,create_date:0
#: field:account.aging.wizard.currency,create_date:0
#: field:account.aging.wizard.document,create_date:0
#: field:account.aging.wizard.partner,create_date:0
msgid "Created on"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.currency,currency_id:0
#: field:account.aging.wizard.document,currency_id:0
#: field:account.aging.wizard.partner,currency_id:0
msgid "Currency"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "Customer Aging Report of Debts"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
msgid "Customer Detailed Report of Debts"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_formal_due_report_qweb_document
msgid "Customer Financial Statement"
msgstr ""
#. module: aging_due_report
#: model:ir.actions.report.xml,name:aging_due_report.report_formal_due_report_qweb
#: view:website:aging_due_report.report_formal_due_report_qweb_document
msgid "Customer Formal Report of Debts"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "D: D/N"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
msgid "DAY(S)"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "DAYS"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "DOCUMENT"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "DUE"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "DUE DATE"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "DUE DAYS"
msgstr ""
#. module: aging_due_report
#: model:ir.actions.report.xml,name:aging_due_report.report_detail_due_report_qweb
msgid "Detail Report of Debts"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,type:0
msgid "Detailed Report"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,direction:0
msgid "Direction"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,document_ids:0
#: help:account.aging.wizard,document_ids:0
msgid "Document"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.partner,document_ids:0
msgid "Documents"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,date_due:0
msgid "Due Date"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,due_days:0
msgid "Due Days"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "EMIS DATE"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,date_emission:0
msgid "Emission Date"
msgstr ""
#. module: aging_due_report
#: code:addons/aging_due_report/wizard/wizard.py:347
#, python-format
msgid "Error!"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,direction:0
msgid "Future"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "I: INVOICE"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,id:0
#: field:account.aging.wizard.currency,id:0
#: field:account.aging.wizard.document,id:0
#: field:account.aging.wizard.partner,id:0
#: field:report.aging_due_report.aging_due_report_qweb,id:0
#: field:report.aging_due_report.detail_due_report_qweb,id:0
#: field:report.aging_due_report.formal_due_report_qweb,id:0
#: field:report.aging_due_report.supplier_formal_due_report_qweb,id:0
msgid "ID"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,invoice_id:0
msgid "Invoice"
msgstr ""
#. module: aging_due_report
#: help:account.aging.wizard.document,aml_id:0
msgid "Journal Item"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,aml_id:0
#: help:account.aging.wizard.partner,aml_ids:0
msgid "Journal Items"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,write_uid:0
#: field:account.aging.wizard.currency,write_uid:0
#: field:account.aging.wizard.document,write_uid:0
#: field:account.aging.wizard.partner,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,write_date:0
#: field:account.aging.wizard.currency,write_date:0
#: field:account.aging.wizard.document,write_date:0
#: field:account.aging.wizard.partner,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "NOT DUE"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.partner,name:0
msgid "Name"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.currency,not_due:0
#: field:account.aging.wizard.partner,not_due:0
msgid "Not Due"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "PARTNER"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "PAYMENTS"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,report_format:0
msgid "PDF"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
#: view:website:aging_due_report.report_detail_due_report_qweb_document
msgid "Page:"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,partner_id:0
#: field:account.aging.wizard.partner,partner_id:0
msgid "Partner"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.currency,partner_ids:0
#: help:account.aging.wizard.currency,partner_ids:0
msgid "Partner by Currency"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,partner_ids:0
#: help:account.aging.wizard,partner_ids:0
msgid "Partners"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,direction:0
msgid "Past"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,result_selection:0
msgid "Payable"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.document,payment:0
#: field:account.aging.wizard.partner,payment:0
msgid "Payment"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,period_length:0
msgid "Period Length (days)"
msgstr ""
#. module: aging_due_report
#: model:ir.model,name:aging_due_report.model_account_aging_wizard
msgid "Price List"
msgstr ""
#. module: aging_due_report
#: view:account.aging.wizard:aging_due_report.view_account_aging_partner_report
msgid "Print"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
#: view:website:aging_due_report.report_detail_due_report_qweb_document
msgid "Printed"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,result_selection:0
msgid "Receivable"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard,report_format:0
msgid "Report Format"
msgstr ""
#. module: aging_due_report
#: field:account.aging.wizard.currency,residual:0
#: field:account.aging.wizard.document,residual:0
#: field:account.aging.wizard.partner,residual:0
msgid "Residual"
msgstr ""
#. module: aging_due_report
#: selection:account.aging.wizard,report_format:0
msgid "Spreadsheet"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "Supplier Aging Report of Debts"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
msgid "Supplier Detailed Report of Debts"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "Supplier Financial Statement"
msgstr ""
#. module: aging_due_report
#: model:ir.actions.report.xml,name:aging_due_report.report_supplier_formal_due_report_qweb
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "Supplier Formal Report of Debts"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_detail_due_report_qweb_document
#: view:website:aging_due_report.report_formal_due_report_qweb_document
#: view:website:aging_due_report.report_supplier_formal_due_report_qweb_document
msgid "TAX"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "TIN"
msgstr ""
#. module: aging_due_report
#: view:website:aging_due_report.report_aging_due_report_qweb_document
msgid "TOT./AP"
msgstr ""
#. module: aging_due_report