Skip to content
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
124 changes: 124 additions & 0 deletions l10n_jp_summary_invoice/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
=====================
Japan Summary Invoice
=====================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:45ab1e289fb94394421ac23e39ad2cefcc03f8392e8d5037e4dfe13e5054eab0
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--japan-lightgray.png?logo=github
:target: https://github.com/OCA/l10n-japan/tree/17.0/l10n_jp_summary_invoice
:alt: OCA/l10n-japan
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/l10n-japan-17-0/l10n-japan-17-0-l10n_jp_summary_invoice
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-japan&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module adds a summary invoice report print functionality based on
the account_billing module.

The printed summary invoice is intended to serve as the Qualified Tax
Invoice (適格請求書), meaning that consumption taxes should be
recalculated based on the total amount of the invoices per tax rate
included in the summary invoice.

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

Configuration
=============

Go to *Invoicing/Accounting > Configuration > Settings* and update the
following settings as necessary:

- **Summary Invoice Remark**: The remark that shows in the header part
of the summary invoice, such as '下記の通り御請求申し上げます。'.
- **Show Sales Order Number**: If selected, the sales order number will
be shown for each line in the summary invoice.
- **Show Invoice Narration**: If selected, the narration will appear
for each invoice in the summary invoice report.
- **Show Invoice Total Amount**: If selected, the total amount per
invoice will appear in the summary invoice report.

Usage
=====

1. Create a billing for customer invoices using the functionality of the
account_billing module, and make adjustments as necessary.

- **Remit-to Bank**: If not selected, the bank account related to
the company with the smallest sequence will show in the printed
document.
- **Due Date**: The earliest due date among the selected invoices
will be proposed. Adjust this as necessary as it will show in the
printed document.

2. Validate the billing. An invoice for tax adjustment will be created
automatically in case the recalculated tax amount is different from
the summary of the tax amounts in the selected invoices.
3. Print the summary invoice report (合計請求書) from *Print > JP
Summary Invoice* of the billing.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-japan/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/l10n-japan/issues/new?body=module:%20l10n_jp_summary_invoice%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Quartile

Contributors
------------

- `Quartile <https://www.quartile.co>`__:

- Aung Ko Ko Lin
- Yoshi Tashiro

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/l10n-japan <https://github.com/OCA/l10n-japan/tree/17.0/l10n_jp_summary_invoice>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions l10n_jp_summary_invoice/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
21 changes: 21 additions & 0 deletions l10n_jp_summary_invoice/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2024-2025 Quartile (https://www.quartile.co)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Japan Summary Invoice",
"version": "17.0.1.0.0",
"category": "Japanese Localization",
"author": "Quartile, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-japan",
"license": "AGPL-3",
"depends": ["account_billing", "report_alternative_layout"],
"data": [
"reports/report_summary_invoice_templates.xml",
"reports/summary_invoice_reports.xml",
"views/account_billing_views.xml",
"views/account_move_views.xml",
"views/account_tax_views.xml",
"views/res_config_settings_views.xml",
],
"development_status": "Alpha",
"installable": True,
}
Loading
Loading