Skip to content
This repository has been archived by the owner on Oct 7, 2021. It is now read-only.

Commit

Permalink
[8.0.1.1.0][edii_kbn] Invoice Lahan
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevhe18 authored and andhit-r committed Nov 20, 2019
1 parent 8f79ddd commit 8b51356
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
3 changes: 2 additions & 1 deletion edii_kbn/__openerp__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "EDI - Proforma Invoice Aeroo Report",
"version": "8.0.1.0.0",
"version": "8.0.1.1.0",
"category": "Invoicing",
"website": "https://opensynergy-indonesia.com/",
"author": "OpenSynergy Indonesia",
Expand All @@ -22,5 +22,6 @@
"data/decimal_precision_data.xml",
"reports/account_proforma_invoice.xml",
"reports/account_debt_collection_handling.xml",
"reports/account_debt_collection_lahan.xml",
],
}
1 change: 1 addition & 0 deletions edii_kbn/reports/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
from . import (
account_proforma_invoice,
account_debt_collection_handling,
account_debt_collection_lahan,
)
Binary file not shown.
13 changes: 13 additions & 0 deletions edii_kbn/reports/account_debt_collection_lahan.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
# Copyright 2019 OpenSynergy Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from edii_kbn_base_parser import EDIKBNBaseParser as Base


class Parser(Base):
def __init__(self, cr, uid, name, context):
super(Parser, self).__init__(cr, uid, name, context)
self.context = context
self.localcontext.update({
})
18 changes: 18 additions & 0 deletions edii_kbn/reports/account_debt_collection_lahan.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<openerp>
<data>
<record id="account_debt_collection_lahan_pdf_report" model="ir.actions.report.xml">
<field name="name">EDI: Invoice Lahan A4 PDF</field>
<field name="type">ir.actions.report.xml</field>
<field name="model">account.debt_collection</field>
<field name="report_name">InvoiceLahanEdi</field>
<field name="report_type">aeroo</field>
<field name="in_format">oo-odt</field>
<field name="out_format" ref="report_aeroo.report_mimetypes_pdf_odt"/>
<field name="parser_loc">edii_kbn/reports/account_debt_collection_lahan.py</field>
<field name="report_rml">edii_kbn/reports/account_debt_collection_lahan.odt</field>
<field name="parser_state">loc</field>
<field name="tml_source">file</field>
</record>
</data>
</openerp>

0 comments on commit 8b51356

Please sign in to comment.