From b75a4841d1ada221ebfd6862b64d258eea2b7b1f Mon Sep 17 00:00:00 2001 From: HorstOeko Date: Thu, 18 Apr 2024 05:59:34 +0200 Subject: [PATCH] Added codelist for "Accounting Accounts Classification" (EDIFICASEU_AccountingAccountsClassificationType_D10A) --- ...rAccountingAccountsClassificationTypes.php | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/codelists/OrderAccountingAccountsClassificationTypes.php diff --git a/src/codelists/OrderAccountingAccountsClassificationTypes.php b/src/codelists/OrderAccountingAccountsClassificationTypes.php new file mode 100644 index 0000000..de341a1 --- /dev/null +++ b/src/codelists/OrderAccountingAccountsClassificationTypes.php @@ -0,0 +1,57 @@ + + * @license https://opensource.org/licenses/MIT MIT + * @link https://github.com/horstoeko/orderx + */ +class OrderAccountingAccountsClassificationTypes +{ + /** + * The code indicates a general chart of accounts + */ + const GENERAL_ACCOUNT_CHART_OF_ACCOUNTS = '1'; + + /** + * The code indicates a cost chart of accounts + */ + const COST_ACCOUNTING_CHART_OF_ACCOUNTS = '2'; + + /** + * The code indicates a budget chart of accounts + */ + const BUDGETARY_ACCOUNT_CHART_OF_ACCOUNTS = '3'; + + /** + * The code indicates a payable chart of accounts + */ + const PAYABLE_ACCOUNT_CHART_OF_ACCOUNTS = '4'; + + /** + * The code indicates a receivable chart of accounts + */ + const RECEIVABLE_ACCOUNT_CHART_OF_ACCOUNTS = '5'; + + /** + * The code indicates a job chart of accounts + */ + const JOB_ACCOUNT_CHART_OF_ACCOUNTS = '6'; + + /** + * The code indicates a building site chart of accounts + */ + const BUILDING_SITE_ACCOUNT_CHART_OF_ACCOUNTS = '7'; +} \ No newline at end of file