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