add_balance

This commit is contained in:
SoHardKI
2019-06-21 18:05:58 +03:00
parent 0727013ddd
commit 1b088402df
313 changed files with 543 additions and 25 deletions

4
common/models/UseStatus.php Normal file → Executable file
View File

@ -21,6 +21,7 @@ class UseStatus extends \yii\db\ActiveRecord
const USE_PROFILE = 0;
const USE_PROJECT = 1;
const USE_COMPANY = 2;
const USE_BALANCE = 3;
/**
* {@inheritdoc}
@ -67,7 +68,8 @@ class UseStatus extends \yii\db\ActiveRecord
return [
self::USE_PROFILE => 'Профиль',
self::USE_PROJECT => 'Проект',
self::USE_COMPANY => 'Компания'
self::USE_COMPANY => 'Компания',
self::USE_BALANCE => 'Баланс'
];
}