From 1ca3b3df3421961caec3b747a364071c80f5c7da Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 17:14:58 +0700 Subject: initial commit --- base_accounting_kit/data/account_asset_data.xml | 13 ++ .../data/account_financial_report_data.xml | 134 +++++++++++++++++++++ base_accounting_kit/data/account_pdc_data.xml | 25 ++++ base_accounting_kit/data/cash_flow_data.xml | 73 +++++++++++ base_accounting_kit/data/followup_levels.xml | 12 ++ base_accounting_kit/data/multiple_invoice_data.xml | 8 ++ base_accounting_kit/data/recurring_entry_cron.xml | 13 ++ 7 files changed, 278 insertions(+) create mode 100644 base_accounting_kit/data/account_asset_data.xml create mode 100644 base_accounting_kit/data/account_financial_report_data.xml create mode 100644 base_accounting_kit/data/account_pdc_data.xml create mode 100644 base_accounting_kit/data/cash_flow_data.xml create mode 100644 base_accounting_kit/data/followup_levels.xml create mode 100644 base_accounting_kit/data/multiple_invoice_data.xml create mode 100644 base_accounting_kit/data/recurring_entry_cron.xml (limited to 'base_accounting_kit/data') diff --git a/base_accounting_kit/data/account_asset_data.xml b/base_accounting_kit/data/account_asset_data.xml new file mode 100644 index 0000000..3f9a289 --- /dev/null +++ b/base_accounting_kit/data/account_asset_data.xml @@ -0,0 +1,13 @@ + + + + Account Asset: Generate asset entries + + code + model._cron_generate_entries() + 1 + months + -1 + + + \ No newline at end of file diff --git a/base_accounting_kit/data/account_financial_report_data.xml b/base_accounting_kit/data/account_financial_report_data.xml new file mode 100644 index 0000000..018f242 --- /dev/null +++ b/base_accounting_kit/data/account_financial_report_data.xml @@ -0,0 +1,134 @@ + + + + + + Profit and Loss + + sum + + + + Income + + 1 + + + detail_with_hierarchy + sum + + + Other Income + 10 + + + detail_with_hierarchy + account_type + + + + + Gross Profit + + detail_with_hierarchy + sum + 3 + + + + + Cost of Revenue + 10 + + detail_with_hierarchy + account_type + + + + + Operating Income + 1 + + detail_with_hierarchy + account_type + + + + + Expense + + 2 + + detail_with_hierarchy + account_type + + + + + Balance Sheet + sum + + + + Assets + + detail_with_hierarchy + account_type + + + + + Liability + 1 + + no_detail + sum + + + + Liability + + detail_with_hierarchy + account_type + + + + + Profit (Loss) to report + + no_detail + account_report + + + + + diff --git a/base_accounting_kit/data/account_pdc_data.xml b/base_accounting_kit/data/account_pdc_data.xml new file mode 100644 index 0000000..d604303 --- /dev/null +++ b/base_accounting_kit/data/account_pdc_data.xml @@ -0,0 +1,25 @@ + + + + + + PDC + pdc + inbound + + + PDC + pdc + outbound + + + + + + + Account + + + + + \ No newline at end of file diff --git a/base_accounting_kit/data/cash_flow_data.xml b/base_accounting_kit/data/cash_flow_data.xml new file mode 100644 index 0000000..bf5918a --- /dev/null +++ b/base_accounting_kit/data/cash_flow_data.xml @@ -0,0 +1,73 @@ + + + + + Cash Flow Statement + sum + + + + Operations + 1 + + detail_with_hierarchy + sum + + + Cash In + 1 + + detail_with_hierarchy + accounts + + + Cash Out + 2 + + detail_with_hierarchy + accounts + + + + Investing Activities + 2 + + detail_with_hierarchy + sum + + + Cash In + + detail_with_hierarchy + accounts + + + Cash Out + + detail_with_hierarchy + accounts + + + + Financing Activities + 3 + + detail_with_hierarchy + sum + + + + + Cash In + + detail_with_hierarchy + accounts + + + Cash Out + + detail_with_hierarchy + accounts + + + diff --git a/base_accounting_kit/data/followup_levels.xml b/base_accounting_kit/data/followup_levels.xml new file mode 100644 index 0000000..f645b15 --- /dev/null +++ b/base_accounting_kit/data/followup_levels.xml @@ -0,0 +1,12 @@ + + + + + Reminder + 5 + + + + + + \ No newline at end of file diff --git a/base_accounting_kit/data/multiple_invoice_data.xml b/base_accounting_kit/data/multiple_invoice_data.xml new file mode 100644 index 0000000..25635d3 --- /dev/null +++ b/base_accounting_kit/data/multiple_invoice_data.xml @@ -0,0 +1,8 @@ + + + + + Sample Name + + + diff --git a/base_accounting_kit/data/recurring_entry_cron.xml b/base_accounting_kit/data/recurring_entry_cron.xml new file mode 100644 index 0000000..2eda1a3 --- /dev/null +++ b/base_accounting_kit/data/recurring_entry_cron.xml @@ -0,0 +1,13 @@ + + + + Generate Recurring Entries + + code + model._cron_generate_entries() + 1 + days + -1 + + + \ No newline at end of file -- cgit v1.2.3