-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added codelist for "Accounting Accounts Classification" (EDIFICASEU_A…
…ccountingAccountsClassificationType_D10A)
- Loading branch information
HorstOeko
committed
Apr 18, 2024
1 parent
d8957cc
commit b75a484
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
src/codelists/OrderAccountingAccountsClassificationTypes.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
|
||
/** | ||
* This file is a part of horstoeko/orderx. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace horstoeko\orderx\codelists; | ||
|
||
/** | ||
* Class representing Accounting Account classifications | ||
* | ||
* @category Order-X | ||
* @package Order-X | ||
* @author D. Erling <horstoeko@erling.com.de> | ||
* @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'; | ||
} |