where( [ 'item_id' => \Yii::$app->request->get('id'), // 'item_id' => $this->id, '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; // // } } public static function getTypeName($id) { return self::getTypeList()[$id]; } public static function getTypeList() { return [ self::TYPE_ACTIVE => 'Актив', self::TYPE_PASSIVE => 'Пассив', ]; } public static function getNameList() { return ArrayHelper::map(AdditionalFields::find()->all(),'id','name'); } public static function tableName() { return 'balance'; } public function rules() { return [ [['type', 'summ', 'dt_add'], 'integer'], ]; } public function attributeLabels() { return [ 'id' => 'id', 'type' => 'Тип', 'summ' => 'Сумма', 'dt_add' => 'Дата добавления', 'value' => 'Значение', ]; } 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() { return $this->hasMany(FieldsValueNew::class, ['item_id' => 'id'])->where(['item_type' => FieldsValueNew::TYPE_BALANCE])->with('field'); } 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 } }