guild/common/models/Balance.php

146 lines
3.8 KiB
PHP
Raw Normal View History

2019-06-21 18:05:58 +03:00
<?php
namespace common\models;
use common\classes\Debug;
2019-06-26 14:03:42 +03:00
use PHPUnit\Framework\MockObject\Matcher\DeferredError;
use yii\db\Query;
use yii\helpers\ArrayHelper;
2019-06-21 18:05:58 +03:00
/**
* This is the model class for table "company".
*
* @property int $id
* @property int $type
* @property int $summ
* @property int $dt_add
*/
class Balance extends \yii\db\ActiveRecord
{
2019-06-25 12:37:09 +03:00
const TYPE_ACTIVE = 1;
const TYPE_PASSIVE = 0;
2019-06-25 18:28:20 +03:00
public $fields;
public function init()
{
parent::init();
$fieldValue = FieldsValueNew::find()
->where(
[
2019-06-26 14:03:42 +03:00
'item_id' => \Yii::$app->request->get('id'),
// 'item_id' => $this->id,
2019-06-25 18:28:20 +03:00
'item_type' => FieldsValueNew::TYPE_BALANCE,
])
->with('field')
->all();
$array = [];
if (!empty($fieldValue)) {
foreach ($fieldValue as $item) {
array_push($array,
['field_id' => $item->field_id,
'value' => $item->value,
'order' => $item->order,
'field_name' => $item->field->name]);
}
$this->fields = $array;
} else {
$this->fields = [
[
'field_id' => null,
'value' => null,
'order' => null,
'field_name' => null,
],
];
}
// $user = ArrayHelper::getColumn(ProjectUser::find()->where(['project_id' => \Yii::$app->request->get('id')])->all(),
// 'card_id');
//
// if (!empty($user)) {
// $this->user = $user;
//
// }
}
2019-06-25 12:37:09 +03:00
public static function getTypeName($id)
{
return self::getTypeList()[$id];
}
public static function getTypeList()
{
return [
self::TYPE_ACTIVE => 'Актив',
self::TYPE_PASSIVE => 'Пассив',
];
}
2019-07-05 11:25:15 +03:00
public static function getNameList($type)
2019-06-26 14:03:42 +03:00
{
2019-07-05 11:25:15 +03:00
return ArrayHelper::map(
AdditionalFields::find()
->leftJoin('use_field', 'additional_fields.id=use_field.field_id')
->where(['use_field.use' => $type])->all(), 'id', 'name'
);
2019-06-26 14:03:42 +03:00
}
2019-06-21 18:05:58 +03:00
public static function tableName()
{
2019-06-25 12:37:09 +03:00
return 'balance';
2019-06-21 18:05:58 +03:00
}
2019-06-25 12:37:09 +03:00
public function rules()
{
return [
[['type', 'summ', 'dt_add'], 'integer'],
];
}
2019-06-21 18:05:58 +03:00
2019-06-25 12:37:09 +03:00
public function attributeLabels()
{
2019-06-21 18:05:58 +03:00
return [
2019-06-25 12:37:09 +03:00
'id' => 'id',
'type' => 'Тип',
'summ' => 'Сумма',
'dt_add' => 'Дата добавления',
2019-06-26 14:03:42 +03:00
'value' => 'Значение',
2019-06-21 18:05:58 +03:00
];
2019-06-25 12:37:09 +03:00
}
public function afterFind()
{
parent::afterFind(); // TODO: Change the autogenerated stub
$this->dt_add = date('d-m-Y', $this->dt_add);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getFieldsValues()
{
2019-06-25 18:28:20 +03:00
return $this->hasMany(FieldsValueNew::class, ['item_id' => 'id'])->where(['item_type' => FieldsValueNew::TYPE_BALANCE])->with('field');
2019-06-25 12:37:09 +03:00
}
2019-06-21 18:05:58 +03:00
2019-06-25 12:37:09 +03:00
public function afterSave($insert, $changedAttributes)
{
$post = \Yii::$app->request->post('Balance');
FieldsValueNew::deleteAll(['item_id' => $this->id, 'item_type' => FieldsValueNew::TYPE_BALANCE]);
foreach ($post['fields'] as $item) {
$fildsValue = new FieldsValueNew();
$fildsValue->field_id = $item['field_id'];
$fildsValue->value = $item['value'];
$fildsValue->order = $item['order'];
$fildsValue->item_id = $this->id;
$fildsValue->item_type = FieldsValueNew::TYPE_BALANCE;
$fildsValue->save();
}
parent::afterSave($insert, $changedAttributes); // TODO: Change the autogenerated stub
}
2019-06-21 18:05:58 +03:00
}