gudik / yii2-hydraphp
PHP Builder for ERP Hydra API
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0
Requires (Dev)
- fzaninotto/faker: ^1.7
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2025-02-12 10:35:30 UTC
README
Simplest API for Latera Hydra Billing on PHP
Install
composer require gudik/yii2-hydraphp
Test
vendor/bin/phpunit
Use
Before use you will need to Packages: SI_PERSONS_PKG.pls
, SI_SUBJECTS_PKG.pls
and others.
Can get them from Hydra database using Oracle sqlDeveloper and save to ./src/hydra/packages/
Common requirements
<?php namespace gudik\hydraphp\dev; use gudik\hydraphp\Builder; use gudik\hydraphp\db\Connection; use gudik\hydraphp\OCIHelper; $connection = new Connection([ 'dsn' => 'ip/dbName', 'username' => 'userName', 'password' => 'userPassword', 'plIp' => 'hydraAppIp', 'plUser' => 'hydraAppUserName', 'plPassword' => 'hydraAppUserPassword', 'plCode' => 'hydraAppApplicationName', 'plApplicationId' => 'HYDRA_PHP', ]); $hydra = new Builder(); $person = $hydra->create('SI_PERSONS_PKG.SI_PERSONS_PUT'); $person->SURNAME = 'Surname1'; $person->FIRST_NAME = 'Firstname2'; $person->SECOND_NAME = 'Secondname3'; $person->REM = 'Comment'; OCIHelper::create($connection, $hydra)->execute(); ?>
Linking entities
... $faker = $this->faker(); // Create Hydra entities $hydra = new Builder(); $person = $hydra->create('SI_PERSONS_PKG.SI_PERSONS_PUT'); $user = $hydra->create('SI_SUBJECTS_PKG.SI_SUBJECTS_PUT'); $account = $hydra->create('SI_SUBJECTS_PKG.SI_SUBJ_ACCOUNTS_PUT'); // Fill entity Person $person->SURNAME = $faker->lastName; $person->FIRST_NAME = $faker->firstName; $person->SECOND_NAME = $faker->firstName; $person->REM = $faker->text; // Fill entity User $user->CODE = $faker->userName; $user->SUBJ_TYPE_ID = 2001; $user->SUBJ_GROUP_ID = 53640201; // Link User and Person on Person->SUBJECT_ID <= User->BASE_SUBJECT_ID $user->BASE_SUBJECT_ID($person->SUBJECT_ID()); // Fill entity Account $account->ACCOUNT_TYPE_ID = 2042; $account->CURRENCY_ID = 1044; // Link Account and User on User->SUBJECT_ID <= Account->SUBJECT_ID $account->SUBJECT_ID($user->SUBJECT_ID()); // Add another User for Person $otherUser = $hydra->create('SI_SUBJECTS_PKG.SI_SUBJECTS_PUT'); $otherUser->CODE = $faker->userName; $otherUser->SUBJ_TYPE_ID = 2001; $otherUser->SUBJ_GROUP_ID = 53640201; $otherUser->BASE_SUBJECT_ID($person->SUBJECT_ID()); // Build and run pl/sql OCIHelper::create($connection, $hydra)->execute(); ...