Recommend this page to a friend! |
![]() ![]() |
Info | ![]() |
![]() |
![]() ![]() |
Reputation | Support forum | Blog (1) | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2021-05-28 (3 months ago) ![]() | Not yet rated by the users | Total: 52 | All time: 10,049 This week: 213![]() |
Version | License | PHP version | Categories | |||
yii2-d3acc 1.0.0 | Freeware | 5 | Libraries, Business |
Description | Author | ||||||||||||||
This package cam accounting module for YII2 based applications. Innovation Award
|
|
This Yii2 module provides support for balance accounting (bookkeeping) system based on debit and credit principles. Provide additinal functionality: * periods (closing period and period balance) * dynamicly creating accounts attached one or more tables
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist d3yii2/yii2-d3acc "*"
or add
"d3yii2/yii2-d3acc": "*"
to the require section of your composer.json
file.
push migration
Create object acc
use \d3acc\models\AcRecAcc;
use Yii;
/
* Description of acc
*
* @author Dealer
*/
class acc
{
const MONTH_PERIOD = 1;
const PLAYER_ACC = 4;
const EXPENSES = 10;
const FOND_PLAYGROUND = 7;
acc::CODE_CRD_PLAYGROUND = 'CreditPlaygound';
/
* get player account
* @param int $personId
* @return AcRecAcc
*/
public static function player($personId)
{
return AcRecAcc::getAcc(self::PLAYER_ACC, ['person' => $personId]);
}
/
* get expenses account
* @return AcRecAcc
*/
public static function expenses()
{
return AcRecAcc::getAcc(self::EXPENSES);
}
/
* get for player playground account
* @param int $personId
* @param int $playgroundId
* @return AcRecAcc
*/
public static function fondPlayground($personId, $playgroundId)
{
return AcRecAcc::getAcc(self::FOND_PLAYGROUND,
['person' => $personId, 'playground' => $playgroundId]);
}
}
/
* player accounts
*/
$recAccPPG = acc::playerPlayground($person_id, $playground_id);
$recAccPlayer = acc::player($person_id);
$day = date('Y-m-d');
$tran = AcTran::registre($recAccPlayer, $recAccPPG, $personAmt,
$day, acc::MONTH_PERIOD, acc::CODE_CRD_PLAYGROUND);
use d3acc\models\AcPeriod;
$acPeriod = AcPeriod::getActivePeriod(acc::MONTH_PERIOD))
//close period
\d3acc\components\PeriodMonth::close(acc::MONTH_PERIOD);
$recAccPlayer = acc::player($person_id);
$data = AcTran::accPeriodTran($recAccPlayer, $acPeriod);
$filter = ['playground' => $playgroundId]
$playgroundAllPersonBalance = AcTran::accBalanceFilter(acc::FOND_PLAYGROUND, $acPeriod,$filter);
$filter = ['person' => $personId]
$personAllPlaygroundsBalance = AcTran::accBalanceFilter(acc::FOND_PLAYGROUND, $acPeriod,$filter);
$allPlaygroundsAllPersonBalance = AcTran::accBalanceFilter(acc::FOND_PLAYGROUND, $acPeriod,[]);
Define account plan by creating acc class
Add definition record in tables
$constructor = new AccConstructor();
Load existind or create new account (ac_account table) for session
$constructor->load($accId);
$constructor->create($code, $name);
Add new account dimension (ac_def table) for loaded/created account
$definition = $constructor->addDimension($table, $pkField);
Add new extended-account (ac_rec_acc table) for loaded/created account
$extAccount = $constructor->addExtendedAccount();
Add new dimension value (ac_rec_ref table) and recalculate label for given extended-account (ac_rec_acc table)
$constructor->addDimensionRecAcc($extAccount->id, $definition->id, $pk_value);
![]() |
File | Role | Description | ||
---|---|---|---|---|
![]() |
||||
![]() |
||||
![]() |
||||
![]() |
||||
![]() |
||||
![]() |
||||
![]() |
||||
![]() |
||||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Data | Auxiliary data | ||
![]() ![]() |
Lic. | License text | ||
![]() ![]() |
Aux. | Auxiliary script | ||
![]() |
Class | Class source | ||
![]() ![]() |
Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.