<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.idempiere.org/w-en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ray</id>
	<title>iDempiere en - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.idempiere.org/w-en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ray"/>
	<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/en/Special:Contributions/Ray"/>
	<updated>2026-04-26T01:11:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23798</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23798"/>
		<updated>2026-03-23T11:57:51Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* Release Plug-in */ remove jar download&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Kanban-hero-final.jpg|thumb|Overview]]&lt;br /&gt;
&lt;br /&gt;
= iDempiere Request Module – Kanban Extension =&lt;br /&gt;
&lt;br /&gt;
'''Plugin for iDempiere's built-in Request module, adding a Kanban board interface.'''&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes the usability challenges of iDempiere's built-in Request module and the design decisions behind the Kanban plugin developed to address them.}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
iDempiere ships with a built-in '''Request module''' (&amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt;), a ticket and request tracker for ERP workflows. It is feature-complete, but the interface exposes a large number of fields and tabs, making it difficult to approach for everyday use.&lt;br /&gt;
&lt;br /&gt;
This plugin adds a '''Kanban board layer''' in front of the existing module — no new database tables, no schema changes, just a more approachable entry point.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Observation !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Fully functional || Search, filter, and status transitions all work correctly&lt;br /&gt;
|-&lt;br /&gt;
| Complex interface || Main window contains many fields across multiple nested tabs&lt;br /&gt;
|-&lt;br /&gt;
| Operational fatigue || Each action requires extra clicks and context-switching, accumulating over time&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The module itself has no defects. The problem is the distance between it and the user.}}&lt;br /&gt;
&lt;br /&gt;
== Design Decisions ==&lt;br /&gt;
&lt;br /&gt;
=== No New Database Tables ===&lt;br /&gt;
&lt;br /&gt;
* All data is read directly from the existing &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; table&lt;br /&gt;
* [[File:Rk-request-attachment.jpg|thumb|Attachment Panel]]iDempiere upgrades will not conflict with any buried schema changes&lt;br /&gt;
* Zero additional maintenance surface&lt;br /&gt;
&lt;br /&gt;
=== Real-Time Updates via OSGi EventAdmin ===&lt;br /&gt;
&lt;br /&gt;
* Uses the platform's built-in '''EventAdmin''' event bus for live card updates&lt;br /&gt;
* No external dependencies introduced&lt;br /&gt;
&lt;br /&gt;
=== Permission-Gated Drag-and-Drop ===&lt;br /&gt;
&lt;br /&gt;
* Only the '''SalesRep''' or the '''Requester''' of a record may drag their own cards&lt;br /&gt;
* Prevents uncontrolled status changes from becoming support tickets&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
=== Kanban Board View ===&lt;br /&gt;
[[File:Rk-request-kanban.jpg|thumb|Kanban Board]]&lt;br /&gt;
Cards are arranged in columns by status. Authorized users can drag cards between columns to update status directly.&lt;br /&gt;
&lt;br /&gt;
=== List View ===&lt;br /&gt;
[[File:Rk-request-listview.jpg|thumb|List View]]&lt;br /&gt;
A tabbed table grouped by status, for users who prefer a traditional interface.&lt;br /&gt;
[[File:Rk-request-gantt.jpg|thumb|Gantt View]]&lt;br /&gt;
&lt;br /&gt;
=== Gantt Chart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Progress visibility for management&lt;br /&gt;
|-&lt;br /&gt;
| Timeline granularity || Auto-adjusting: day / week / month&lt;br /&gt;
|-&lt;br /&gt;
| Displayed data || Start date and due date for each Request&lt;br /&gt;
|-&lt;br /&gt;
| Primary audience || Project managers and stakeholders&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The Gantt chart is a governance artifact. It gives managers a visual sense of control. It is not intended for engineers.}}&lt;br /&gt;
&lt;br /&gt;
== Technical Reference ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Item !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Platform || iDempiere OSGi&lt;br /&gt;
|-&lt;br /&gt;
| Data source || &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; (native table, no added columns)&lt;br /&gt;
|-&lt;br /&gt;
| Real-time mechanism || OSGi EventAdmin&lt;br /&gt;
|-&lt;br /&gt;
| Access control || Role-based: SalesRep / Requester&lt;br /&gt;
|}&lt;br /&gt;
[[File:Rk-request-update-history.jpg|thumb|Chat History]]&lt;br /&gt;
&lt;br /&gt;
== Source Code ==&lt;br /&gt;
&lt;br /&gt;
* '''GitHub''': [https://github.com/ray-idempiere/tw.idempiere.requestkanban github.com/ray-idempiere/tw.idempiere.requestkanban]&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* iDempiere Request Module – official documentation&lt;br /&gt;
* OSGi EventAdmin specification&lt;br /&gt;
&lt;br /&gt;
[[Category:iDempiere]]&lt;br /&gt;
[[Category:Plugin]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23797</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23797"/>
		<updated>2026-03-23T10:02:11Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* Source Code */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Kanban-hero-final.jpg|thumb|Overview]]&lt;br /&gt;
&lt;br /&gt;
= iDempiere Request Module – Kanban Extension =&lt;br /&gt;
&lt;br /&gt;
'''Plugin for iDempiere's built-in Request module, adding a Kanban board interface.'''&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes the usability challenges of iDempiere's built-in Request module and the design decisions behind the Kanban plugin developed to address them.}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
iDempiere ships with a built-in '''Request module''' (&amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt;), a ticket and request tracker for ERP workflows. It is feature-complete, but the interface exposes a large number of fields and tabs, making it difficult to approach for everyday use.&lt;br /&gt;
&lt;br /&gt;
This plugin adds a '''Kanban board layer''' in front of the existing module — no new database tables, no schema changes, just a more approachable entry point.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Observation !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Fully functional || Search, filter, and status transitions all work correctly&lt;br /&gt;
|-&lt;br /&gt;
| Complex interface || Main window contains many fields across multiple nested tabs&lt;br /&gt;
|-&lt;br /&gt;
| Operational fatigue || Each action requires extra clicks and context-switching, accumulating over time&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The module itself has no defects. The problem is the distance between it and the user.}}&lt;br /&gt;
&lt;br /&gt;
== Design Decisions ==&lt;br /&gt;
&lt;br /&gt;
=== No New Database Tables ===&lt;br /&gt;
&lt;br /&gt;
* All data is read directly from the existing &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; table&lt;br /&gt;
* [[File:Rk-request-attachment.jpg|thumb|Attachment Panel]]iDempiere upgrades will not conflict with any buried schema changes&lt;br /&gt;
* Zero additional maintenance surface&lt;br /&gt;
&lt;br /&gt;
=== Real-Time Updates via OSGi EventAdmin ===&lt;br /&gt;
&lt;br /&gt;
* Uses the platform's built-in '''EventAdmin''' event bus for live card updates&lt;br /&gt;
* No external dependencies introduced&lt;br /&gt;
&lt;br /&gt;
=== Permission-Gated Drag-and-Drop ===&lt;br /&gt;
&lt;br /&gt;
* Only the '''SalesRep''' or the '''Requester''' of a record may drag their own cards&lt;br /&gt;
* Prevents uncontrolled status changes from becoming support tickets&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
=== Kanban Board View ===&lt;br /&gt;
[[File:Rk-request-kanban.jpg|thumb|Kanban Board]]&lt;br /&gt;
Cards are arranged in columns by status. Authorized users can drag cards between columns to update status directly.&lt;br /&gt;
&lt;br /&gt;
=== List View ===&lt;br /&gt;
[[File:Rk-request-listview.jpg|thumb|List View]]&lt;br /&gt;
A tabbed table grouped by status, for users who prefer a traditional interface.&lt;br /&gt;
[[File:Rk-request-gantt.jpg|thumb|Gantt View]]&lt;br /&gt;
&lt;br /&gt;
=== Gantt Chart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Progress visibility for management&lt;br /&gt;
|-&lt;br /&gt;
| Timeline granularity || Auto-adjusting: day / week / month&lt;br /&gt;
|-&lt;br /&gt;
| Displayed data || Start date and due date for each Request&lt;br /&gt;
|-&lt;br /&gt;
| Primary audience || Project managers and stakeholders&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The Gantt chart is a governance artifact. It gives managers a visual sense of control. It is not intended for engineers.}}&lt;br /&gt;
&lt;br /&gt;
== Technical Reference ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Item !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Platform || iDempiere OSGi&lt;br /&gt;
|-&lt;br /&gt;
| Data source || &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; (native table, no added columns)&lt;br /&gt;
|-&lt;br /&gt;
| Real-time mechanism || OSGi EventAdmin&lt;br /&gt;
|-&lt;br /&gt;
| Access control || Role-based: SalesRep / Requester&lt;br /&gt;
|}&lt;br /&gt;
[[File:Rk-request-update-history.jpg|thumb|Chat History]]&lt;br /&gt;
&lt;br /&gt;
== Source Code ==&lt;br /&gt;
&lt;br /&gt;
* '''GitHub''': [https://github.com/ray-idempiere/tw.idempiere.requestkanban github.com/ray-idempiere/tw.idempiere.requestkanban]&lt;br /&gt;
&lt;br /&gt;
== Release Plug-in ==&lt;br /&gt;
* '''GitHub Release''': https://github.com/ray-idempiere/tw.idempiere.requestkanban/releases/download/1.1.0/tw.idempiere.requestkanban_1.1.0.202603231756.jar&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* iDempiere Request Module – official documentation&lt;br /&gt;
* OSGi EventAdmin specification&lt;br /&gt;
&lt;br /&gt;
[[Category:iDempiere]]&lt;br /&gt;
[[Category:Plugin]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23796</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23796"/>
		<updated>2026-03-23T10:01:09Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* Release Plug-in */  update jar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Kanban-hero-final.jpg|thumb|Overview]]&lt;br /&gt;
&lt;br /&gt;
= iDempiere Request Module – Kanban Extension =&lt;br /&gt;
&lt;br /&gt;
'''Plugin for iDempiere's built-in Request module, adding a Kanban board interface.'''&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes the usability challenges of iDempiere's built-in Request module and the design decisions behind the Kanban plugin developed to address them.}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
iDempiere ships with a built-in '''Request module''' (&amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt;), a ticket and request tracker for ERP workflows. It is feature-complete, but the interface exposes a large number of fields and tabs, making it difficult to approach for everyday use.&lt;br /&gt;
&lt;br /&gt;
This plugin adds a '''Kanban board layer''' in front of the existing module — no new database tables, no schema changes, just a more approachable entry point.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Observation !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Fully functional || Search, filter, and status transitions all work correctly&lt;br /&gt;
|-&lt;br /&gt;
| Complex interface || Main window contains many fields across multiple nested tabs&lt;br /&gt;
|-&lt;br /&gt;
| Operational fatigue || Each action requires extra clicks and context-switching, accumulating over time&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The module itself has no defects. The problem is the distance between it and the user.}}&lt;br /&gt;
&lt;br /&gt;
== Design Decisions ==&lt;br /&gt;
&lt;br /&gt;
=== No New Database Tables ===&lt;br /&gt;
&lt;br /&gt;
* All data is read directly from the existing &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; table&lt;br /&gt;
* [[File:Rk-request-attachment.jpg|thumb|Attachment Panel]]iDempiere upgrades will not conflict with any buried schema changes&lt;br /&gt;
* Zero additional maintenance surface&lt;br /&gt;
&lt;br /&gt;
=== Real-Time Updates via OSGi EventAdmin ===&lt;br /&gt;
&lt;br /&gt;
* Uses the platform's built-in '''EventAdmin''' event bus for live card updates&lt;br /&gt;
* No external dependencies introduced&lt;br /&gt;
&lt;br /&gt;
=== Permission-Gated Drag-and-Drop ===&lt;br /&gt;
&lt;br /&gt;
* Only the '''SalesRep''' or the '''Requester''' of a record may drag their own cards&lt;br /&gt;
* Prevents uncontrolled status changes from becoming support tickets&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
=== Kanban Board View ===&lt;br /&gt;
[[File:Rk-request-kanban.jpg|thumb|Kanban Board]]&lt;br /&gt;
Cards are arranged in columns by status. Authorized users can drag cards between columns to update status directly.&lt;br /&gt;
&lt;br /&gt;
=== List View ===&lt;br /&gt;
[[File:Rk-request-listview.jpg|thumb|List View]]&lt;br /&gt;
A tabbed table grouped by status, for users who prefer a traditional interface.&lt;br /&gt;
[[File:Rk-request-gantt.jpg|thumb|Gantt View]]&lt;br /&gt;
&lt;br /&gt;
=== Gantt Chart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Progress visibility for management&lt;br /&gt;
|-&lt;br /&gt;
| Timeline granularity || Auto-adjusting: day / week / month&lt;br /&gt;
|-&lt;br /&gt;
| Displayed data || Start date and due date for each Request&lt;br /&gt;
|-&lt;br /&gt;
| Primary audience || Project managers and stakeholders&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The Gantt chart is a governance artifact. It gives managers a visual sense of control. It is not intended for engineers.}}&lt;br /&gt;
&lt;br /&gt;
== Technical Reference ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Item !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Platform || iDempiere OSGi&lt;br /&gt;
|-&lt;br /&gt;
| Data source || &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; (native table, no added columns)&lt;br /&gt;
|-&lt;br /&gt;
| Real-time mechanism || OSGi EventAdmin&lt;br /&gt;
|-&lt;br /&gt;
| Access control || Role-based: SalesRep / Requester&lt;br /&gt;
|}&lt;br /&gt;
[[File:Rk-request-update-history.jpg|thumb|Chat History]]&lt;br /&gt;
&lt;br /&gt;
== Source Code ==&lt;br /&gt;
&lt;br /&gt;
* '''GitHub''': [https://github.com/ray-idempiere/tw.idempiere.requestkanban github.com/ray-idempiere/tw.idempiere.requestkanban]&lt;br /&gt;
&lt;br /&gt;
=== Release Plug-in ===&lt;br /&gt;
https://github.com/ray-idempiere/tw.idempiere.requestkanban/releases/download/1.1.0/tw.idempiere.requestkanban_1.1.0.202603231756.jar&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* iDempiere Request Module – official documentation&lt;br /&gt;
* OSGi EventAdmin specification&lt;br /&gt;
&lt;br /&gt;
[[Category:iDempiere]]&lt;br /&gt;
[[Category:Plugin]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23795</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23795"/>
		<updated>2026-03-23T01:25:26Z</updated>

		<summary type="html">&lt;p&gt;Ray: update release jar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Kanban-hero-final.jpg|thumb|Overview]]&lt;br /&gt;
&lt;br /&gt;
= iDempiere Request Module – Kanban Extension =&lt;br /&gt;
&lt;br /&gt;
'''Plugin for iDempiere's built-in Request module, adding a Kanban board interface.'''&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes the usability challenges of iDempiere's built-in Request module and the design decisions behind the Kanban plugin developed to address them.}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
iDempiere ships with a built-in '''Request module''' (&amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt;), a ticket and request tracker for ERP workflows. It is feature-complete, but the interface exposes a large number of fields and tabs, making it difficult to approach for everyday use.&lt;br /&gt;
&lt;br /&gt;
This plugin adds a '''Kanban board layer''' in front of the existing module — no new database tables, no schema changes, just a more approachable entry point.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Observation !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Fully functional || Search, filter, and status transitions all work correctly&lt;br /&gt;
|-&lt;br /&gt;
| Complex interface || Main window contains many fields across multiple nested tabs&lt;br /&gt;
|-&lt;br /&gt;
| Operational fatigue || Each action requires extra clicks and context-switching, accumulating over time&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The module itself has no defects. The problem is the distance between it and the user.}}&lt;br /&gt;
&lt;br /&gt;
== Design Decisions ==&lt;br /&gt;
&lt;br /&gt;
=== No New Database Tables ===&lt;br /&gt;
&lt;br /&gt;
* All data is read directly from the existing &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; table&lt;br /&gt;
* [[File:Rk-request-attachment.jpg|thumb|Attachment Panel]]iDempiere upgrades will not conflict with any buried schema changes&lt;br /&gt;
* Zero additional maintenance surface&lt;br /&gt;
&lt;br /&gt;
=== Real-Time Updates via OSGi EventAdmin ===&lt;br /&gt;
&lt;br /&gt;
* Uses the platform's built-in '''EventAdmin''' event bus for live card updates&lt;br /&gt;
* No external dependencies introduced&lt;br /&gt;
&lt;br /&gt;
=== Permission-Gated Drag-and-Drop ===&lt;br /&gt;
&lt;br /&gt;
* Only the '''SalesRep''' or the '''Requester''' of a record may drag their own cards&lt;br /&gt;
* Prevents uncontrolled status changes from becoming support tickets&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
=== Kanban Board View ===&lt;br /&gt;
[[File:Rk-request-kanban.jpg|thumb|Kanban Board]]&lt;br /&gt;
Cards are arranged in columns by status. Authorized users can drag cards between columns to update status directly.&lt;br /&gt;
&lt;br /&gt;
=== List View ===&lt;br /&gt;
[[File:Rk-request-listview.jpg|thumb|List View]]&lt;br /&gt;
A tabbed table grouped by status, for users who prefer a traditional interface.&lt;br /&gt;
[[File:Rk-request-gantt.jpg|thumb|Gantt View]]&lt;br /&gt;
&lt;br /&gt;
=== Gantt Chart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Progress visibility for management&lt;br /&gt;
|-&lt;br /&gt;
| Timeline granularity || Auto-adjusting: day / week / month&lt;br /&gt;
|-&lt;br /&gt;
| Displayed data || Start date and due date for each Request&lt;br /&gt;
|-&lt;br /&gt;
| Primary audience || Project managers and stakeholders&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The Gantt chart is a governance artifact. It gives managers a visual sense of control. It is not intended for engineers.}}&lt;br /&gt;
&lt;br /&gt;
== Technical Reference ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Item !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Platform || iDempiere OSGi&lt;br /&gt;
|-&lt;br /&gt;
| Data source || &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; (native table, no added columns)&lt;br /&gt;
|-&lt;br /&gt;
| Real-time mechanism || OSGi EventAdmin&lt;br /&gt;
|-&lt;br /&gt;
| Access control || Role-based: SalesRep / Requester&lt;br /&gt;
|}&lt;br /&gt;
[[File:Rk-request-update-history.jpg|thumb|Chat History]]&lt;br /&gt;
&lt;br /&gt;
== Source Code ==&lt;br /&gt;
&lt;br /&gt;
* '''GitHub''': [https://github.com/ray-idempiere/tw.idempiere.requestkanban github.com/ray-idempiere/tw.idempiere.requestkanban]&lt;br /&gt;
&lt;br /&gt;
=== Release Plug-in ===&lt;br /&gt;
https://github.com/ray-idempiere/tw.idempiere.requestkanban/releases/download/1.1.0/tw.idempiere.requestkanban_1.1.0.202603221512.jar&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* iDempiere Request Module – official documentation&lt;br /&gt;
* OSGi EventAdmin specification&lt;br /&gt;
&lt;br /&gt;
[[Category:iDempiere]]&lt;br /&gt;
[[Category:Plugin]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User:Ray&amp;diff=23794</id>
		<title>User:Ray</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User:Ray&amp;diff=23794"/>
		<updated>2026-03-23T01:13:12Z</updated>

		<summary type="html">&lt;p&gt;Ray: update plug-in&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Blog: [https://www.ninniku.tw/ Ninniku IT Hub][[File:Ray Lee.jpg|alt=Ray Lee|thumb|Ray Lee]]&lt;br /&gt;
I am a senior system analyst, as well as a contributor to iDempiere ERP and a financial management consultant for the Small and Medium Enterprise Administration of the Ministry of Economic Affairs.&lt;br /&gt;
&lt;br /&gt;
I have extensive experience in system analysis and development and a deep understanding of the design and implementation of ERP systems.&lt;br /&gt;
&lt;br /&gt;
As a contributor to iDempiere ERP, I actively participate in the development and contribution of the project. This allows me to have a deep understanding of the operating principles and best practices of ERP systems, as well as to communicate and learn from other contributors.&lt;br /&gt;
&lt;br /&gt;
In addition, as a financial management consultant for the Small and Medium Enterprise Administration of the Ministry of Economic Affairs, I am committed to helping small and medium-sized enterprises achieve best practices in financial management. Through my advice and guidance, enterprises can better grasp the key points of financial management and achieve long-term development goals.&lt;br /&gt;
&lt;br /&gt;
Overall, I am very passionate about my work and have a strong interest in the field of system analysis and development. I look forward to working with more people in the future, continuously learning and growing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Recent release plug-in&lt;br /&gt;
&lt;br /&gt;
[[Request Kanban]] v1.1.0 2026.03&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23793</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23793"/>
		<updated>2026-03-23T01:10:39Z</updated>

		<summary type="html">&lt;p&gt;Ray: Update. Screen shot images&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Kanban-hero-final.jpg|thumb|Overview]]&lt;br /&gt;
&lt;br /&gt;
= iDempiere Request Module – Kanban Extension =&lt;br /&gt;
&lt;br /&gt;
'''Plugin for iDempiere's built-in Request module, adding a Kanban board interface.'''&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes the usability challenges of iDempiere's built-in Request module and the design decisions behind the Kanban plugin developed to address them.}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
iDempiere ships with a built-in '''Request module''' (&amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt;), a ticket and request tracker for ERP workflows. It is feature-complete, but the interface exposes a large number of fields and tabs, making it difficult to approach for everyday use.&lt;br /&gt;
&lt;br /&gt;
This plugin adds a '''Kanban board layer''' in front of the existing module — no new database tables, no schema changes, just a more approachable entry point.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Observation !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Fully functional || Search, filter, and status transitions all work correctly&lt;br /&gt;
|-&lt;br /&gt;
| Complex interface || Main window contains many fields across multiple nested tabs&lt;br /&gt;
|-&lt;br /&gt;
| Operational fatigue || Each action requires extra clicks and context-switching, accumulating over time&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The module itself has no defects. The problem is the distance between it and the user.}}&lt;br /&gt;
&lt;br /&gt;
== Design Decisions ==&lt;br /&gt;
&lt;br /&gt;
=== No New Database Tables ===&lt;br /&gt;
&lt;br /&gt;
* All data is read directly from the existing &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; table&lt;br /&gt;
* [[File:Rk-request-attachment.jpg|thumb|Attachment Panel]]iDempiere upgrades will not conflict with any buried schema changes&lt;br /&gt;
* Zero additional maintenance surface&lt;br /&gt;
&lt;br /&gt;
=== Real-Time Updates via OSGi EventAdmin ===&lt;br /&gt;
&lt;br /&gt;
* Uses the platform's built-in '''EventAdmin''' event bus for live card updates&lt;br /&gt;
* No external dependencies introduced&lt;br /&gt;
&lt;br /&gt;
=== Permission-Gated Drag-and-Drop ===&lt;br /&gt;
&lt;br /&gt;
* Only the '''SalesRep''' or the '''Requester''' of a record may drag their own cards&lt;br /&gt;
* Prevents uncontrolled status changes from becoming support tickets&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
=== Kanban Board View ===&lt;br /&gt;
[[File:Rk-request-kanban.jpg|thumb|Kanban Board]]&lt;br /&gt;
Cards are arranged in columns by status. Authorized users can drag cards between columns to update status directly.&lt;br /&gt;
&lt;br /&gt;
=== List View ===&lt;br /&gt;
[[File:Rk-request-listview.jpg|thumb|List View]]&lt;br /&gt;
A tabbed table grouped by status, for users who prefer a traditional interface.&lt;br /&gt;
[[File:Rk-request-gantt.jpg|thumb|Gantt View]]&lt;br /&gt;
&lt;br /&gt;
=== Gantt Chart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Progress visibility for management&lt;br /&gt;
|-&lt;br /&gt;
| Timeline granularity || Auto-adjusting: day / week / month&lt;br /&gt;
|-&lt;br /&gt;
| Displayed data || Start date and due date for each Request&lt;br /&gt;
|-&lt;br /&gt;
| Primary audience || Project managers and stakeholders&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The Gantt chart is a governance artifact. It gives managers a visual sense of control. It is not intended for engineers.}}&lt;br /&gt;
&lt;br /&gt;
== Technical Reference ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Item !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Platform || iDempiere OSGi&lt;br /&gt;
|-&lt;br /&gt;
| Data source || &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; (native table, no added columns)&lt;br /&gt;
|-&lt;br /&gt;
| Real-time mechanism || OSGi EventAdmin&lt;br /&gt;
|-&lt;br /&gt;
| Access control || Role-based: SalesRep / Requester&lt;br /&gt;
|}&lt;br /&gt;
[[File:Rk-request-update-history.jpg|thumb|Chat History]]&lt;br /&gt;
&lt;br /&gt;
== Source Code ==&lt;br /&gt;
&lt;br /&gt;
* '''GitHub''': [https://github.com/ray-idempiere/tw.idempiere.requestkanban github.com/ray-idempiere/tw.idempiere.requestkanban]&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* iDempiere Request Module – official documentation&lt;br /&gt;
* OSGi EventAdmin specification&lt;br /&gt;
&lt;br /&gt;
[[Category:iDempiere]]&lt;br /&gt;
[[Category:Plugin]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23792</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23792"/>
		<updated>2026-03-23T01:07:12Z</updated>

		<summary type="html">&lt;p&gt;Ray: Request Kanbon 1.1.0&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= iDempiere Request Module – Kanban Extension =&lt;br /&gt;
&lt;br /&gt;
'''Plugin for iDempiere's built-in Request module, adding a Kanban board interface.'''&lt;br /&gt;
&lt;br /&gt;
{{Note|This article describes the usability challenges of iDempiere's built-in Request module and the design decisions behind the Kanban plugin developed to address them.}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
iDempiere ships with a built-in '''Request module''' (&amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt;), a ticket and request tracker for ERP workflows. It is feature-complete, but the interface exposes a large number of fields and tabs, making it difficult to approach for everyday use.&lt;br /&gt;
&lt;br /&gt;
This plugin adds a '''Kanban board layer''' in front of the existing module — no new database tables, no schema changes, just a more approachable entry point.&lt;br /&gt;
&lt;br /&gt;
== Problem Statement ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Observation !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Fully functional || Search, filter, and status transitions all work correctly&lt;br /&gt;
|-&lt;br /&gt;
| Complex interface || Main window contains many fields across multiple nested tabs&lt;br /&gt;
|-&lt;br /&gt;
| Operational fatigue || Each action requires extra clicks and context-switching, accumulating over time&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The module itself has no defects. The problem is the distance between it and the user.}}&lt;br /&gt;
&lt;br /&gt;
== Design Decisions ==&lt;br /&gt;
&lt;br /&gt;
=== No New Database Tables ===&lt;br /&gt;
&lt;br /&gt;
* All data is read directly from the existing &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; table&lt;br /&gt;
* iDempiere upgrades will not conflict with any buried schema changes&lt;br /&gt;
* Zero additional maintenance surface&lt;br /&gt;
&lt;br /&gt;
=== Real-Time Updates via OSGi EventAdmin ===&lt;br /&gt;
&lt;br /&gt;
* Uses the platform's built-in '''EventAdmin''' event bus for live card updates&lt;br /&gt;
* No external dependencies introduced&lt;br /&gt;
&lt;br /&gt;
=== Permission-Gated Drag-and-Drop ===&lt;br /&gt;
&lt;br /&gt;
* Only the '''SalesRep''' or the '''Requester''' of a record may drag their own cards&lt;br /&gt;
* Prevents uncontrolled status changes from becoming support tickets&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
=== Kanban Board View ===&lt;br /&gt;
&lt;br /&gt;
Cards are arranged in columns by status. Authorized users can drag cards between columns to update status directly.&lt;br /&gt;
&lt;br /&gt;
=== List View ===&lt;br /&gt;
&lt;br /&gt;
A tabbed table grouped by status, for users who prefer a traditional interface.&lt;br /&gt;
&lt;br /&gt;
=== Gantt Chart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Attribute !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Purpose || Progress visibility for management&lt;br /&gt;
|-&lt;br /&gt;
| Timeline granularity || Auto-adjusting: day / week / month&lt;br /&gt;
|-&lt;br /&gt;
| Displayed data || Start date and due date for each Request&lt;br /&gt;
|-&lt;br /&gt;
| Primary audience || Project managers and stakeholders&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Note|The Gantt chart is a governance artifact. It gives managers a visual sense of control. It is not intended for engineers.}}&lt;br /&gt;
&lt;br /&gt;
== Technical Reference ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Item !! Detail&lt;br /&gt;
|-&lt;br /&gt;
| Platform || iDempiere OSGi&lt;br /&gt;
|-&lt;br /&gt;
| Data source || &amp;lt;code&amp;gt;R_Request&amp;lt;/code&amp;gt; (native table, no added columns)&lt;br /&gt;
|-&lt;br /&gt;
| Real-time mechanism || OSGi EventAdmin&lt;br /&gt;
|-&lt;br /&gt;
| Access control || Role-based: SalesRep / Requester&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Source Code ==&lt;br /&gt;
&lt;br /&gt;
* '''GitHub''': [https://github.com/ray-idempiere/tw.idempiere.requestkanban github.com/ray-idempiere/tw.idempiere.requestkanban]&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* iDempiere Request Module – official documentation&lt;br /&gt;
* OSGi EventAdmin specification&lt;br /&gt;
&lt;br /&gt;
[[Category:iDempiere]]&lt;br /&gt;
[[Category:Plugin]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23791</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23791"/>
		<updated>2026-03-23T01:06:25Z</updated>

		<summary type="html">&lt;p&gt;Ray: clean&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-update-history.jpg&amp;diff=23790</id>
		<title>File:Rk-request-update-history.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-update-history.jpg&amp;diff=23790"/>
		<updated>2026-03-23T00:57:27Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;History&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-attachment.jpg&amp;diff=23789</id>
		<title>File:Rk-request-attachment.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-attachment.jpg&amp;diff=23789"/>
		<updated>2026-03-23T00:56:52Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Attachment Panel&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-gantt.jpg&amp;diff=23788</id>
		<title>File:Rk-request-gantt.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-gantt.jpg&amp;diff=23788"/>
		<updated>2026-03-23T00:56:15Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gantt View&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-listview.jpg&amp;diff=23787</id>
		<title>File:Rk-request-listview.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-listview.jpg&amp;diff=23787"/>
		<updated>2026-03-23T00:54:40Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;List View&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23786</id>
		<title>Request Kanban</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Request_Kanban&amp;diff=23786"/>
		<updated>2026-03-23T00:53:33Z</updated>

		<summary type="html">&lt;p&gt;Ray: Request Kanba Draft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Kanban-hero-final.jpg|thumb|Kanban hero]]&lt;br /&gt;
[[File:Rk-request-kanban.jpg|thumb|Kanban View]]&lt;br /&gt;
[[Category:Available Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-kanban.jpg&amp;diff=23785</id>
		<title>File:Rk-request-kanban.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Rk-request-kanban.jpg&amp;diff=23785"/>
		<updated>2026-03-23T00:52:42Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Kanban view&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Kanban-hero-final.jpg&amp;diff=23784</id>
		<title>File:Kanban-hero-final.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Kanban-hero-final.jpg&amp;diff=23784"/>
		<updated>2026-03-23T00:51:44Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Kanba hero image&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21742</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21742"/>
		<updated>2023-10-01T07:40:36Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
&lt;br /&gt;
In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
Download: [https://github.com/ninniku-it-hub/it-tools/blob/4e30e36b846825597779edd9a5b70d3d1b5066e8/tw.ninniku.booking_10.0.1.202310010133.jar 1.Booking Plugin] [https://github.com/ninniku-it-hub/tw.ninniku.booking/blob/1514a3e7d73f9b8d0ba1cf4cad20f3d701e7ce33/META-INF/2Pack.zip 2.Pack-In file]&lt;br /&gt;
&lt;br /&gt;
Source code: [https://github.com/ninniku-it-hub/tw.ninniku.booking GitHub]&lt;br /&gt;
&lt;br /&gt;
Operation demonstration on YouTube: [https://youtu.be/jtLw7-kzack?si=MBGwAuAwN3y2j20Z https://youtu.be/jtLw7-kzack]&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
[[File:Schedule info.png|alt=Schedule info|thumb|400x400px|Schedule info]]&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
[[File:Timeline-meeting room.webp|alt=Timeline-meeting room|thumb|567x567px|Timeline-meeting room]]&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
[[File:Repeat.webp|alt=Repeat|thumb|373x373px|Repeat]]&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
[[File:Permission.webp|alt=Permission|thumb|378x378px|Permission]]&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21741</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21741"/>
		<updated>2023-10-01T07:39:27Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
&lt;br /&gt;
In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
Download: [https://github.com/ninniku-it-hub/it-tools/blob/4e30e36b846825597779edd9a5b70d3d1b5066e8/tw.ninniku.booking_10.0.1.202310010133.jar Booking Plugin] [https://github.com/ninniku-it-hub/tw.ninniku.booking/blob/1514a3e7d73f9b8d0ba1cf4cad20f3d701e7ce33/META-INF/2Pack.zip Pack In File]&lt;br /&gt;
&lt;br /&gt;
Source code: [https://github.com/ninniku-it-hub/tw.ninniku.booking GitHub]&lt;br /&gt;
&lt;br /&gt;
Operation demonstration on YouTube: [https://youtu.be/jtLw7-kzack?si=MBGwAuAwN3y2j20Z https://youtu.be/jtLw7-kzack]&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
[[File:Schedule info.png|alt=Schedule info|thumb|400x400px|Schedule info]]&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
[[File:Timeline-meeting room.webp|alt=Timeline-meeting room|thumb|567x567px|Timeline-meeting room]]&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
[[File:Repeat.webp|alt=Repeat|thumb|373x373px|Repeat]]&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
[[File:Permission.webp|alt=Permission|thumb|378x378px|Permission]]&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21740</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21740"/>
		<updated>2023-10-01T03:30:19Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
&lt;br /&gt;
In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
Download: [https://github.com/ninniku-it-hub/it-tools/blob/4e30e36b846825597779edd9a5b70d3d1b5066e8/tw.ninniku.booking_10.0.1.202310010133.jar Booking Plugin] [https://github.com/ninniku-it-hub/tw.ninniku.booking/blob/1514a3e7d73f9b8d0ba1cf4cad20f3d701e7ce33/META-INF/2Pack.zip Pack In File]&lt;br /&gt;
&lt;br /&gt;
Source code: [https://github.com/ninniku-it-hub/tw.ninniku.booking GitHub]&lt;br /&gt;
&lt;br /&gt;
YouTube: [https://youtu.be/jtLw7-kzack?si=MBGwAuAwN3y2j20Z https://youtu.be/jtLw7-kzack]&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
[[File:Schedule info.png|alt=Schedule info|thumb|400x400px|Schedule info]]&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
[[File:Timeline-meeting room.webp|alt=Timeline-meeting room|thumb|567x567px|Timeline-meeting room]]&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
[[File:Repeat.webp|alt=Repeat|thumb|373x373px|Repeat]]&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
[[File:Permission.webp|alt=Permission|thumb|378x378px|Permission]]&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21739</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21739"/>
		<updated>2023-10-01T03:29:26Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
&lt;br /&gt;
In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
Download: [https://github.com/ninniku-it-hub/it-tools/blob/4e30e36b846825597779edd9a5b70d3d1b5066e8/tw.ninniku.booking_10.0.1.202310010133.jar Booking Plugin] [https://github.com/ninniku-it-hub/tw.ninniku.booking/blob/1514a3e7d73f9b8d0ba1cf4cad20f3d701e7ce33/META-INF/2Pack.zip Pack In File]&lt;br /&gt;
&lt;br /&gt;
Source code: [https://github.com/ninniku-it-hub/tw.ninniku.booking GitHub]&lt;br /&gt;
&lt;br /&gt;
YouTube: [https://youtu.be/jtLw7-kzack?si=MBGwAuAwN3y2j20Z]&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
[[File:Schedule info.png|alt=Schedule info|thumb|400x400px|Schedule info]]&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
[[File:Timeline-meeting room.webp|alt=Timeline-meeting room|thumb|567x567px|Timeline-meeting room]]&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
[[File:Repeat.webp|alt=Repeat|thumb|373x373px|Repeat]]&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
[[File:Permission.webp|alt=Permission|thumb|378x378px|Permission]]&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21738</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21738"/>
		<updated>2023-09-30T20:00:15Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* Background */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
&lt;br /&gt;
In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
Download: [https://github.com/ninniku-it-hub/it-tools/blob/4e30e36b846825597779edd9a5b70d3d1b5066e8/tw.ninniku.booking_10.0.1.202310010133.jar Booking Plugin] [https://github.com/ninniku-it-hub/tw.ninniku.booking/blob/1514a3e7d73f9b8d0ba1cf4cad20f3d701e7ce33/META-INF/2Pack.zip Pack In File]&lt;br /&gt;
&lt;br /&gt;
Source code: [https://github.com/ninniku-it-hub/tw.ninniku.booking GitHub]&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
[[File:Schedule info.png|alt=Schedule info|thumb|400x400px|Schedule info]]&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
[[File:Timeline-meeting room.webp|alt=Timeline-meeting room|thumb|567x567px|Timeline-meeting room]]&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
[[File:Repeat.webp|alt=Repeat|thumb|373x373px|Repeat]]&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
[[File:Permission.webp|alt=Permission|thumb|378x378px|Permission]]&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Permission.webp&amp;diff=21737</id>
		<title>File:Permission.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Permission.webp&amp;diff=21737"/>
		<updated>2023-09-30T19:49:34Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Permission&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Repeat.webp&amp;diff=21736</id>
		<title>File:Repeat.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Repeat.webp&amp;diff=21736"/>
		<updated>2023-09-30T19:48:57Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Repeat&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Timeline-meeting_room.webp&amp;diff=21735</id>
		<title>File:Timeline-meeting room.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Timeline-meeting_room.webp&amp;diff=21735"/>
		<updated>2023-09-30T19:47:52Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Timeline-meeting room&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Schedule_info.png&amp;diff=21734</id>
		<title>File:Schedule info.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Schedule_info.png&amp;diff=21734"/>
		<updated>2023-09-30T19:46:30Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Schedule info&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21733</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21733"/>
		<updated>2023-09-30T19:44:08Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
&lt;br /&gt;
In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21732</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21732"/>
		<updated>2023-09-30T19:43:26Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* '''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
&lt;br /&gt;
In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21731</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21731"/>
		<updated>2023-09-30T19:41:25Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;br /&gt;
[[Category:Available_Plugins]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21730</id>
		<title>Meeting Room Booking</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Meeting_Room_Booking&amp;diff=21730"/>
		<updated>2023-09-30T19:38:47Z</updated>

		<summary type="html">&lt;p&gt;Ray: Created page with &amp;quot;In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Reso...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In today's modern office environment, efficient management of meeting rooms and resource reservations is a crucial challenge. iDempiere, a powerful open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) system, offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
Within iDempiere, the native reservation feature employs a Schedule to view reservation details. However, it comes with a significant limitation: it only allows users to view reservations for one resource at a time. This limitation can be cumbersome for organizations managing multiple meeting rooms or resources, as it hinders the ability to gain a comprehensive overview of all resource reservations. This is where the &amp;quot;Meeting Room Booking&amp;quot; plugin comes to the rescue.&lt;br /&gt;
&lt;br /&gt;
== Timeline Chart ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin introduces a powerful feature known as the Timeline Chart tool. This tool allows users to visually inspect reservation statuses for different types of resources. What's more, users can display resources of the same type in a matrix format, significantly enhancing resource management and reservation efficiency. Whether you need to reserve meeting rooms, equipment, or any other resources, the Timeline Chart tool offers a clear overview for improved planning and management.&lt;br /&gt;
&lt;br /&gt;
== Overlap Check and Repeat Reservations ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin also provides crucial functionality, including Overlap Checks and Repeat Reservation options. These features ensure the validity and reliability of reservations. Overlap Checks ensure that there are no conflicting reservations for the same time period, while the Repeat Reservation feature allows users to easily create recurring reservations without the need to manually input the same information each time.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
The &amp;quot;Meeting Room Booking&amp;quot; plugin for iDempiere offers organizations a comprehensive solution for managing reservations of meeting rooms and resources. It overcomes the limitations of iDempiere's native reservation functionality, enabling users to efficiently manage resources and review reservation statuses. Whether you are operating a business, an academic institution, or a shared workspace, this plugin streamlines your reservation workflow, enhances productivity, and ensures the equitable utilization of resources.&lt;br /&gt;
&lt;br /&gt;
If you are an iDempiere user looking to enhance your resource management processes, the &amp;quot;Meeting Room Booking&amp;quot; plugin is a must-try. It will help you gain better control over resource allocation and ensure the smooth execution of your meetings and events. Don't miss out on this powerful tool; install it today and experience its convenience firsthand!&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Localizations&amp;diff=21729</id>
		<title>Localizations</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Localizations&amp;diff=21729"/>
		<updated>2023-09-30T19:36:02Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* Taiwan */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Colombia ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Qss.jpg|right|160px]]&lt;br /&gt;
* '''Maintainer:''' [[User:CarlosRuiz|Carlos Ruiz]] - [http://globalqss.com Quality Systems &amp;amp; Solutions GlobalQSS]&lt;br /&gt;
* '''Last Update:''' January 9, 2019&lt;br /&gt;
* '''Status:''' Up to date with release 6.2&lt;br /&gt;
* '''Download URL:''' Look at installation guide&lt;br /&gt;
* [http://wiki.idempiere.org/es/LCO_Instrucciones_Instalacion Installation Guide in Spanish]&lt;br /&gt;
** Plugins&lt;br /&gt;
*** [[Plugin:_LCO_Detailed_Names|Nombres Detallados]]&lt;br /&gt;
*** Medios Magnéticos&lt;br /&gt;
*** Retenciones&lt;br /&gt;
*** Control de Resoluciones para Numeración de Facturación&lt;br /&gt;
** Datos&lt;br /&gt;
*** Geografía Capitales&lt;br /&gt;
*** Geografía Completa&lt;br /&gt;
*** Festivos&lt;br /&gt;
*** Datos Ejemplo Retenciones para GardenWorld&lt;br /&gt;
*** Datos Ejemplo Medios Magnéticos para GardenWorld&lt;br /&gt;
** [[Translations#Colombia|Lenguage es_CO]]&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&lt;br /&gt;
* [[Geografia Chile: LCL Geografia|Geografia Chile (Regiones y Comunas) : LCL Geografia]]&lt;br /&gt;
* [[Plugin: LCL Rut Taxid|Plugin: LCL Rut Taxid (Verificador RUT o CI Chileno)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
[[Image:Logo_egs_group-1-1.png‎|right|225px]]&lt;br /&gt;
* '''Maintainer:''' [[User:PabloValdivia|Pablo Valdivia]] - [http://egs.pe EGS GROUP]&lt;br /&gt;
* '''Last Update:''' July 20, 2014&lt;br /&gt;
* '''Status:''' Up to date with release 2.0 &lt;br /&gt;
* '''Source Code:''' [https://bitbucket.org/grupoegs/grupoegs-idempiere-lpe/wiki/Home Home bitbucket LPE]&lt;br /&gt;
* '''Download URL:''' [https://bitbucket.org/grupoegs/grupoegs-idempiere-lpe/downloads downloads]&lt;br /&gt;
** Plugins&lt;br /&gt;
*** [[:es:LPE_Instrucciones_Instalacion|LPE Asientos de Amarre]]&lt;br /&gt;
** LPE Archivos base&lt;br /&gt;
*** [https://drive.google.com/file/d/0B49a4FHc8nJSTUVaY2hjMWt4bzQ/edit?usp=sharing  Geografia de Perú]&lt;br /&gt;
*** [https://drive.google.com/file/d/0B49a4FHc8nJSQ0lFYWp5aDRZSGM/edit?usp=sharing  Plan Contable Empresarial Perú]&lt;br /&gt;
&lt;br /&gt;
== Brasil ==&lt;br /&gt;
&lt;br /&gt;
* '''Maintainer:''' [[User:Alan.lesc1|Alan Lescano]]&lt;br /&gt;
* '''Status:''' on the road to 1.0&lt;br /&gt;
* '''Source-code URL:''' [https://bitbucket.org/idempierelbr/idempierelbr https://bitbucket.org/idempierelbr/idempierelbr]&lt;br /&gt;
** Plugin&lt;br /&gt;
*** [[Plugin:_LBR_Localization_Brazil|LBR Localization Brazil]]&lt;br /&gt;
&lt;br /&gt;
== España ==&lt;br /&gt;
* '''Maintainer:''' [[User:Efekto2k|Efekto 2k]] -- - [http://www.tecnoxp.com TecnoXperience]&lt;br /&gt;
* '''Last Update:''' November 14, 2014&lt;br /&gt;
** ''' Translation: ''' on November 18, 70%&lt;br /&gt;
*** '''Status:''' Preparing to Up to date with release 2.0 &lt;br /&gt;
*** '''Source Code:''' https://bitbucket.org/tecnoxperience/idempiere_spanish_location (Not finished yet)&lt;br /&gt;
*** '''Download URL:''' https://bitbucket.org/tecnoxperience/idempiere_spanish_location (Not finished yet)&lt;br /&gt;
** ''' Account Schema ''' &lt;br /&gt;
*** '''Status:''' Prepared to Up to date with release 2.0 &lt;br /&gt;
*** '''Source Code:''' https://bitbucket.org/tecnoxperience/idempiere_spanish_location/src/40150d344aeff94650d04c9626307acc4e1da844/PLAN%20CONTABLE%20ESPA%C3%91A.csv?at=default&lt;br /&gt;
*** '''Download URL:''' https://bitbucket.org/tecnoxperience/idempiere_spanish_location/src/40150d344aeff94650d04c9626307acc4e1da844/PLAN%20CONTABLE%20ESPA%C3%91A.csv?at=default&lt;br /&gt;
** ''' Spanish Regions ''' Already on trunk&lt;br /&gt;
** ''' Standar Account Reports ''' on November 18, 30%&lt;br /&gt;
*** ''' Pérdidas y Ganancias '''&lt;br /&gt;
*** ''' Balance de Situación '''&lt;br /&gt;
*** ''' IVA '''&lt;br /&gt;
*** ''' Diario del Mayor '''&lt;br /&gt;
&lt;br /&gt;
== Việt Nam ==&lt;br /&gt;
* '''Maintainer:''' [[User:hieplq|Hiêp Lê Quý]]&lt;br /&gt;
* '''Download URL:''' [https://bitbucket.org/hieplq/vn.hsv.vietnam.localization Bitbucket]&lt;br /&gt;
** Tiếng việt vi_vn&lt;br /&gt;
*** '''Status:''' not yet complete, very bad translate ([https://translations.launchpad.net/idempiere-vi-vn online maintain])&lt;br /&gt;
*** '''Data:''' folder /language&lt;br /&gt;
*** '''Guideline:''' /language/step make translate to launchpad.txt&lt;br /&gt;
** ''' Account Schema '''  maintain file from age of adempiere&lt;br /&gt;
*** '''Data:''' /accounting/AccountingVN-COA-QD15-VN.csv&lt;br /&gt;
** ''' Việt Name city list ''' List Việt Nam city with name, post code, phone code&lt;br /&gt;
*** '''Data:''' use import csv to import file /city/VietNam_C_City.csv or run sql in /city/[database name]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Japan ==&lt;br /&gt;
[[Image:JPiere-tate.png |200px|right|JPiere]]&lt;br /&gt;
* '''Creator:''' [[User:Hideaki_Hagiwara|Hagiwara Hideaki]] in JAPAN (I'm sorry for my poor English. Please modify correctly if my English expressions are mistaken.)&lt;br /&gt;
* '''SPONSOR:''' [http://www.oss-erp.co.jp/ OSS ERP Solutions] in JAPAN&lt;br /&gt;
* '''Source:''' [https://bitbucket.org/jpiere/  Bitbucket JPiere repository] &lt;br /&gt;
* '''More info(Japanese):'''[[:Plugin: Localization Japan|Plugin Localization Japan]]&lt;br /&gt;
* '''More info(Japanese):'''[http://www.compiere-distribution-lab.net/jpiere-lab/ JPiere Lab] &lt;br /&gt;
&lt;br /&gt;
== Nicaragua ==&lt;br /&gt;
&lt;br /&gt;
[[Image:SAC.jpg|right|160px]]&lt;br /&gt;
* '''Maintainer:''' [[User:CésarBaldelomar|César Baldelomar]] , [[User:obenavidez|Osmar Benavidez]] - [http://processus-erp.blogspot.com/ Soluciones Ágiles y Confiables]&lt;br /&gt;
* '''Last Update:''' Octubre 05, 2016&lt;br /&gt;
* '''Status:''' Up to date with release 3.1&lt;br /&gt;
* '''Download URL:''' [https://bitbucket.org/CesarBaldelomar/lco_nicaragua/downloads]&lt;br /&gt;
** Plugins&lt;br /&gt;
*** Retenciones&lt;br /&gt;
*** Detalles&lt;br /&gt;
*** LCO_Retenciones&lt;br /&gt;
*** [[Plugin:Notifications |Notificaciones]]&lt;br /&gt;
** Datos&lt;br /&gt;
*** Geografía Departamento - Municipios&lt;br /&gt;
*** Elemento Contable&lt;br /&gt;
** Lenguage es_NI&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kenya ==&lt;br /&gt;
*'''Maintainer:''' [[User:Smartjsp|Pedro Rozo - SmartJSP]]&lt;br /&gt;
*[[File:Logo SmartJSP.png|thumb|[http://www.smartjsp.com www.smartjsp.com]]]'''Last Update:''' July 7,  2023&lt;br /&gt;
*'''Status:''' Up to date with release 10+&lt;br /&gt;
*'''Download URL:''' Look at README_FOR_USERS.txt&lt;br /&gt;
&lt;br /&gt;
* Data Model extended with SQL scripts and 2Packs (add tabs and fields to Country, Region, city Window)&lt;br /&gt;
* Geography (Region, County , Town/ward, Constituency and much more&lt;br /&gt;
* [https://sourceforge.net/projects/idempierelocalizationforkenya/ Source code and files]&lt;br /&gt;
&lt;br /&gt;
== Uganda ==&lt;br /&gt;
*'''Maintainer:''' [[User:Smartjsp|Pedro Rozo - SmartJSP]]&lt;br /&gt;
*[[File:Logo SmartJSP.png|thumb|[http://www.smartjsp.com www.smartjsp.com]]]'''Last Update:''' July 7,  2023&lt;br /&gt;
*'''Status:''' Up to date with release 10+&lt;br /&gt;
*'''Download URL:''' Look at README_FOR_USERS.txt&lt;br /&gt;
&lt;br /&gt;
* Data Model extended with SQL scripts and 2Packs (add tabs and fields to Country, Region, city Window)&lt;br /&gt;
* Geography (Zone, District, County , SubCounty, Parish and much more&lt;br /&gt;
* [https://sourceforge.net/projects/idempierelocalizationforuganda/ Source code and files]&lt;br /&gt;
&lt;br /&gt;
== Taiwan ==&lt;br /&gt;
* '''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw Ninniku IT HUB]&lt;br /&gt;
* '''Last Update:''' September 9, 2023&lt;br /&gt;
* '''Status:''' Up to date with release 10 (editing)&lt;br /&gt;
* '''Download URL:''' [https://www.ninniku.tw/plugins/ guide Ninniku IT HUB's Plugins]&lt;br /&gt;
&lt;br /&gt;
=== Plugins ===&lt;br /&gt;
&lt;br /&gt;
* [[Plugin:Accounting_for_Taiwan|Accounting for Taiwan]]&lt;br /&gt;
** We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only enhances the user experience for Taiwanese businesses but also ensures that they can smoothly adhere to local accounting regulations.&lt;br /&gt;
* [[Meeting Room Booking]]&lt;br /&gt;
** We offers a solution through its robust plugin ecosystem - the &amp;quot;Meeting Room Booking&amp;quot; plugin. This plugin addresses the complexities of reserving meeting rooms and other resources, providing users with enhanced control and visualization features.&lt;br /&gt;
* [[Plugin:JasperReport_Asia_Font_Supplement|JasperReport Asia Font Supplement]]&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
[[Category:User Manual]]&lt;br /&gt;
[[Category:Setup]]&lt;br /&gt;
[[Category:System administration]]&lt;br /&gt;
[[Category:Localisation]]&lt;br /&gt;
[[Category:Translation]]&lt;br /&gt;
[[Category:Broken_Link_Bitbucket]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User:Ray&amp;diff=21728</id>
		<title>User:Ray</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User:Ray&amp;diff=21728"/>
		<updated>2023-09-30T10:48:30Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Blog: [https://www.ninniku.tw/ Ninniku IT Hub][[File:Ray Lee.jpg|alt=Ray Lee|thumb|Ray Lee]]&lt;br /&gt;
I am a senior system analyst, as well as a contributor to iDempiere ERP and a financial management consultant for the Small and Medium Enterprise Administration of the Ministry of Economic Affairs.&lt;br /&gt;
&lt;br /&gt;
I have extensive experience in system analysis and development and a deep understanding of the design and implementation of ERP systems.&lt;br /&gt;
&lt;br /&gt;
As a contributor to iDempiere ERP, I actively participate in the development and contribution of the project. This allows me to have a deep understanding of the operating principles and best practices of ERP systems, as well as to communicate and learn from other contributors.&lt;br /&gt;
&lt;br /&gt;
In addition, as a financial management consultant for the Small and Medium Enterprise Administration of the Ministry of Economic Affairs, I am committed to helping small and medium-sized enterprises achieve best practices in financial management. Through my advice and guidance, enterprises can better grasp the key points of financial management and achieve long-term development goals.&lt;br /&gt;
&lt;br /&gt;
Overall, I am very passionate about my work and have a strong interest in the field of system analysis and development. I look forward to working with more people in the future, continuously learning and growing.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=User:Ray&amp;diff=21727</id>
		<title>User:Ray</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=User:Ray&amp;diff=21727"/>
		<updated>2023-09-30T10:46:11Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ray Lee.jpg|alt=Ray Lee|thumb|Ray Lee]]&lt;br /&gt;
I am a senior system analyst, as well as a contributor to iDempiere ERP and a financial management consultant for the Small and Medium Enterprise Administration of the Ministry of Economic Affairs.&lt;br /&gt;
&lt;br /&gt;
I have extensive experience in system analysis and development and a deep understanding of the design and implementation of ERP systems.&lt;br /&gt;
&lt;br /&gt;
As a contributor to iDempiere ERP, I actively participate in the development and contribution of the project. This allows me to have a deep understanding of the operating principles and best practices of ERP systems, as well as to communicate and learn from other contributors.&lt;br /&gt;
&lt;br /&gt;
In addition, as a financial management consultant for the Small and Medium Enterprise Administration of the Ministry of Economic Affairs, I am committed to helping small and medium-sized enterprises achieve best practices in financial management. Through my advice and guidance, enterprises can better grasp the key points of financial management and achieve long-term development goals.&lt;br /&gt;
&lt;br /&gt;
Overall, I am very passionate about my work and have a strong interest in the field of system analysis and development. I look forward to working with more people in the future, continuously learning and growing.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Ray_Lee.jpg&amp;diff=21726</id>
		<title>File:Ray Lee.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Ray_Lee.jpg&amp;diff=21726"/>
		<updated>2023-09-30T10:45:45Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ray Lee&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21725</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21725"/>
		<updated>2023-09-30T10:41:35Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* 1.3 Source Code */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* '''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 Source Code''' ===&lt;br /&gt;
https://github.com/ninniku-it-hub/tw.ninniku.accounting&lt;br /&gt;
&lt;br /&gt;
Welcome to collaborate together on GitHub to collectively create more powerful plugins to support Taiwan's accounting needs.&lt;br /&gt;
&lt;br /&gt;
==='''1.4 How to Use'''===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
 ''(Image:iDempiere Product Accounting Workflow)''&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return.  &lt;br /&gt;
 (Image:IDempiere-accounting-schema)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. &lt;br /&gt;
 (Image:IDempiere-product-category)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. &lt;br /&gt;
 (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
[[Category:Available_Plugins]]&lt;br /&gt;
[[Category:Localisation|T]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21724</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21724"/>
		<updated>2023-09-30T10:41:01Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* 1.3 Source Code */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* '''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 1.3 Source Code ===&lt;br /&gt;
https://github.com/ninniku-it-hub/tw.ninniku.accounting&lt;br /&gt;
&lt;br /&gt;
Welcome to collaborate together on GitHub to collectively create more powerful plugins to support Taiwan's accounting needs.&lt;br /&gt;
&lt;br /&gt;
==='''1.4 How to Use'''===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
 ''(Image:iDempiere Product Accounting Workflow)''&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return.  &lt;br /&gt;
 (Image:IDempiere-accounting-schema)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. &lt;br /&gt;
 (Image:IDempiere-product-category)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. &lt;br /&gt;
 (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
[[Category:Available_Plugins]]&lt;br /&gt;
[[Category:Localisation|T]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21723</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21723"/>
		<updated>2023-09-30T10:27:40Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* '''Maintainer:''' [[User:Ray|Ray Lee]] - [https://www.ninniku.tw/ Ninniku IT Hub]&lt;br /&gt;
== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 1.3 Source Code ===&lt;br /&gt;
https://github.com/ninniku-it-hub/tw.ninniku.accounting&lt;br /&gt;
&lt;br /&gt;
Interested in collaborating with others to develop superior tools? Welcome to collaborate together on GitHub to collectively create more powerful plugins to support Taiwan's accounting needs.&lt;br /&gt;
&lt;br /&gt;
==='''1.4 How to Use'''===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
 ''(Image:iDempiere Product Accounting Workflow)''&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return.  &lt;br /&gt;
 (Image:IDempiere-accounting-schema)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. &lt;br /&gt;
 (Image:IDempiere-product-category)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. &lt;br /&gt;
 (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
[[Category:Available_Plugins]]&lt;br /&gt;
[[Category:Localisation|T]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21722</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21722"/>
		<updated>2023-09-30T10:16:22Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 1.3 Source Code ===&lt;br /&gt;
https://github.com/ninniku-it-hub/tw.ninniku.accounting&lt;br /&gt;
&lt;br /&gt;
Interested in collaborating with others to develop superior tools? Welcome to collaborate together on GitHub to collectively create more powerful plugins to support Taiwan's accounting needs.&lt;br /&gt;
&lt;br /&gt;
==='''1.4 How to Use'''===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
 ''(Image:iDempiere Product Accounting Workflow)''&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return.  &lt;br /&gt;
 (Image:IDempiere-accounting-schema)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. &lt;br /&gt;
 (Image:IDempiere-product-category)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. &lt;br /&gt;
 (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
[[Category:Available_Plugins]]&lt;br /&gt;
[[Category:Localisation|T]]&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21721</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21721"/>
		<updated>2023-09-30T07:32:19Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== 1.3 Source Code ===&lt;br /&gt;
https://github.com/ninniku-it-hub/tw.ninniku.accounting&lt;br /&gt;
&lt;br /&gt;
Interested in collaborating with others to develop superior tools? Welcome to collaborate together on GitHub to collectively create more powerful plugins to support Taiwan's accounting needs.&lt;br /&gt;
&lt;br /&gt;
==='''1.4 How to Use'''===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
 ''(Image:iDempiere Product Accounting Workflow)''&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return.  &lt;br /&gt;
 (Image:IDempiere-accounting-schema)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. &lt;br /&gt;
 (Image:IDempiere-product-category)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. &lt;br /&gt;
 (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21720</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21720"/>
		<updated>2023-09-30T06:55:53Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* 2.3 Accounting Account Configuration Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
 ''(Image:iDempiere Product Accounting Workflow)''&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return.  &lt;br /&gt;
 (Image:IDempiere-accounting-schema)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. &lt;br /&gt;
 (Image:IDempiere-product-category)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. &lt;br /&gt;
 (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21719</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21719"/>
		<updated>2023-09-30T06:55:13Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* 2.3 Introduction to iDempiere Product Accounting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
 ''(Image:iDempiere Product Accounting Workflow)''&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return.  &lt;br /&gt;
 (Image:IDempiere-accounting-schema)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. &lt;br /&gt;
 (Image:IDempiere-product-category)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21718</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21718"/>
		<updated>2023-09-30T06:52:41Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* 2.3 Accounting Account Configuration Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
&lt;br /&gt;
(Image:iDempiere Product Accounting Workflow)&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return. (Image:IDempiere-accounting-schema) &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category. (Image:IDempiere-accounting-schema)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. (Image:IDempiere-copy-default-accounting-process)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21717</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21717"/>
		<updated>2023-09-30T06:50:50Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* 2.3 Accounting Account Configuration Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
&lt;br /&gt;
(image:iDempiere Product Accounting Workflow)&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category.(Image:IDempiere-accounting-schema)&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21716</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21716"/>
		<updated>2023-09-30T06:50:18Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* 2.3 Introduction to iDempiere Product Accounting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
&lt;br /&gt;
(image:iDempiere Product Accounting Workflow)&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category.&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21715</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21715"/>
		<updated>2023-09-30T06:48:45Z</updated>

		<summary type="html">&lt;p&gt;Ray: accounting journal entry&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category.&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Accounting journal entry Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21714</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21714"/>
		<updated>2023-09-30T06:47:47Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* Invoice Printing Function */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category.&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Invoice Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
[[File:Print Accounting Fact.webp|alt=Print Accounting Fact|thumb|463x463px|Print Accounting Fact]]&lt;br /&gt;
[[File:Print Accounting Fact PDF.webp|alt=Print Accounting Fact PDF|thumb|464x464px|Print Accounting Fact PDF]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Print_Accounting_Fact_PDF.webp&amp;diff=21713</id>
		<title>File:Print Accounting Fact PDF.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Print_Accounting_Fact_PDF.webp&amp;diff=21713"/>
		<updated>2023-09-30T06:47:33Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print Accounting Fact PDF&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21712</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21712"/>
		<updated>2023-09-30T06:46:21Z</updated>

		<summary type="html">&lt;p&gt;Ray: /* Invoice Printing Function */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category.&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Invoice Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:IDempiere-product-category.webp|alt=IDempiere-product-category|thumb|461x461px|IDempiere-product-category]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Print_Accounting_Fact.webp&amp;diff=21711</id>
		<title>File:Print Accounting Fact.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Print_Accounting_Fact.webp&amp;diff=21711"/>
		<updated>2023-09-30T06:45:41Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print Accounting Fact&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21710</id>
		<title>Plugin:Accounting for Taiwan</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=Plugin:Accounting_for_Taiwan&amp;diff=21710"/>
		<updated>2023-09-30T06:43:32Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Introduction''' ==&lt;br /&gt;
In an era of globalization and digital transformation, adaptability of enterprise software applications becomes crucial. For Taiwanese businesses, effective accounting management is a vital component of success. iDempiere, a widely acclaimed Enterprise Resource Planning (ERP) system, has been providing excellent solutions for global enterprises. However, in order to better align with the unique requirements of the Taiwan market, we have undertaken a significant improvement.&lt;br /&gt;
We have introduced an iDempiere accounting journal posting improvement plan specifically tailored for the Taiwan market and provided dedicated plug-ins for users. This enhancement not only improves the user experience for Taiwanese businesses but also ensures smooth compliance with local accounting regulations.&lt;br /&gt;
&lt;br /&gt;
=== '''1.1 Features of the Accounting for Taiwan Plug-in include:''' ===&lt;br /&gt;
Compliance with Taiwanese Accounting Regulations: Our new solution ensures that the accounting module of the iDempiere system fully complies with Taiwan's accounting regulations, reducing potential compliance risks.&lt;br /&gt;
Localized Reports: The new plug-ins enable Taiwanese businesses to generate financial reports that adhere to local legal requirements more easily, saving time and effort.&lt;br /&gt;
Tax Management: Our improvement also includes tax management tools to assist businesses in calculating and tracking taxes accurately for proper tax reporting.&lt;br /&gt;
Multilingual Support: iDempiere has always provided multilingual support, and now Taiwanese users can expect more localized interfaces and content to better meet their needs.&lt;br /&gt;
This enhancement provides Taiwanese businesses with improved accounting management tools, helping them achieve higher efficiency and accuracy. We are committed to continuously improving iDempiere to meet the needs of different markets, and this step in Taiwan is just a part of our efforts. If you are a business operating in Taiwan, we strongly recommend upgrading to the latest version to experience these exciting new features.&lt;br /&gt;
&lt;br /&gt;
This improvement represents our commitment to the Taiwanese market, and we will continue to strive to provide more value to Taiwanese businesses to help them succeed in a competitive market. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;br /&gt;
&lt;br /&gt;
=== '''1.2 Download Accounting for Taiwan Plug-ins''' ===&lt;br /&gt;
If you wish to experience these new features, please visit our official website to download the latest version of &amp;quot;[https://www.ninniku.tw/idempiere-accounting-taiwan/ Accounting for Taiwan Plug-ins.]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== '''1.3 How to Use''' ===&lt;br /&gt;
Simply download the 1.2 plug-in JAR file and install it via the OSGi Console.&lt;br /&gt;
&lt;br /&gt;
== Implementation - Sales (Purchases) Discounts and Returns ==&lt;br /&gt;
&lt;br /&gt;
=== '''2.1 Current State of iDempiere Accounting''' ===&lt;br /&gt;
iDempiere follows different posting logic based on the document base type of the invoice. Currently, iDempiere provides four document types for invoices: Custom Invoice (ARI), Vendor Invoice (API), AR Credit Memo (ARC), and AP Credit Memo (APC).&lt;br /&gt;
When posting a Custom Invoice (ARI), it reads Customer Receivables for the debit side and Product Revenue from the product category's accounts for the credit side.&lt;br /&gt;
&lt;br /&gt;
Example: Sales transaction for 10,000 NT dollars.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Accounts Receivable 10,000 &lt;br /&gt;
    &lt;br /&gt;
   Credit: Sales Revenue       10,000&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When a customer requests a price discount of 500 NT dollars after receiving the goods due to quality or a decrease in market price, we create an AR Credit Memo as a deduction from Accounts Receivable and Sales Revenue. When posting an AR Credit Memo (ARC), iDempiere currently uses Customer Receivables and Product Revenue for reverse posting.&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Revenue 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
**'''2.2 Adding Discounts and Returns Accounts'''&lt;br /&gt;
To align financial reports more closely with actual business operations, post-sale discounts are recorded using the Sales Discount account. The journal entry is as follows:&amp;lt;syntaxhighlight lang=&amp;quot;css&amp;quot;&amp;gt;&lt;br /&gt;
Debit: Sales Discount 500 &lt;br /&gt;
&lt;br /&gt;
    Credit: Accounts Receivable 500&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Introduction to iDempiere Product Accounting''' ===&lt;br /&gt;
[[File:Idempiere-accounting-workflow.png|alt=iDempiere Product Accounting Workflow|thumb|457x457px|iDempiere Product Accounting Workflow]]&lt;br /&gt;
iDempiere offers flexible design for product-related accounts. Through default account settings, product categories, and product-level configurations, the burden of account setup is significantly reduced.&lt;br /&gt;
&lt;br /&gt;
=== '''2.3 Accounting Account Configuration Overview''' ===&lt;br /&gt;
The accounting framework defaults to the top-level default accounts. In this plug-in, we have added four custom accounting accounts: Sales Discount, Sales Return, Purchase Discount, and Purchase Return. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When creating a new product category, all default product-related accounts are automatically copied to the product category.&lt;br /&gt;
[[File:IDempiere-accounting-schema.webp|alt=IDempiere-accounting-schema|thumb|459x459px|IDempiere-accounting-schema]]&lt;br /&gt;
Current product categories and product account setup are supplemented with data. We provide a Copy Default Product Accounting process to complete the current product category and product accounts with default values. The accounting accounts for each product category inherit from the default values of the accounting schema and can be adjusted for industry-specific characteristics. The accounting accounts for each product inherit from the product category's accounts and can be adjusted to fit the product's specific accounting needs.&lt;br /&gt;
&lt;br /&gt;
== Invoice Printing Function ==&lt;br /&gt;
[[File:IDempiere-copy-default-accounting-process.webp|alt=IDempiere-copy-default-accounting-process|thumb|460x460px|IDempiere-copy-default-accounting-process]]&lt;br /&gt;
[[File:Idempiere-product.webp|alt=Idempiere-product|thumb|461x461px|Idempiere-product]]&lt;br /&gt;
Although iDempiere provides attachment functionality for related documents, many Taiwanese businesses still paste certificates on the back of invoices for archiving purposes. To meet this requirement, we have added a direct invoice printing button to the toolbar in the Window, satisfying this aspect of the need.&lt;br /&gt;
This series of enhancements and new features will provide Taiwanese businesses with powerful and applicable accounting management tools to better address market challenges. iDempiere's commitment to the Taiwanese market will continue, and we will strive to provide more value and support to Taiwanese businesses in their quest for success in a competitive environment. Please stay tuned for our latest updates to learn more about the latest developments and features of iDempiere.&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:Idempiere-product.webp&amp;diff=21709</id>
		<title>File:Idempiere-product.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:Idempiere-product.webp&amp;diff=21709"/>
		<updated>2023-09-30T06:42:01Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Idempiere-product&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
	<entry>
		<id>https://wiki.idempiere.org/w-en/index.php?title=File:IDempiere-product-category.webp&amp;diff=21708</id>
		<title>File:IDempiere-product-category.webp</title>
		<link rel="alternate" type="text/html" href="https://wiki.idempiere.org/w-en/index.php?title=File:IDempiere-product-category.webp&amp;diff=21708"/>
		<updated>2023-09-30T06:40:56Z</updated>

		<summary type="html">&lt;p&gt;Ray: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;IDempiere-product-category&lt;/div&gt;</summary>
		<author><name>Ray</name></author>
	</entry>
</feed>