123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- namespace app\models\entity;
- use Yii;
- use app\models\WpLogs;
- class WheelPairs extends \yii\db\ActiveRecord
- {
-
- public static function tableName()
- {
- return 'so_wheel_pairs';
- }
- public static function getDb()
- {
- return \Yii::$app->slave_db;
- }
-
- public function rules()
- {
- return [
- [[ 'location'], 'required'],
- [[ 'location'], 'safe'],
-
- ['number_mnf', 'default', 'value' => 'Отсутствует'],
-
- [['token'], 'string', 'max' => 255],
- [['number_mnf'], 'string', 'max' => 55],
- [['location'], 'string', 'max' => 5],
-
- [['token','section_id'], 'unique', 'targetAttribute' => ['token', 'section_id']],
- [['location','section_id'], 'unique', 'targetAttribute' => ['location', 'section_id']],
-
- ];
- }
-
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'token' => 'Номер метки',
- 'number_mnf' => 'Number Mnf',
- 'loco_id' => 'Loco ID',
- 'location' => 'Location',
- ];
- }
-
- public function getLoco()
- {
- return $this->hasOne(LocomotiveSeries::class, ['id' => 'loco_id']);
- }
-
-
- public function getOilstat()
- {
- return $this->hasMany(Oilstat::class, ['token' => 'token'])->orderBy(['date' => SORT_DESC]);
- }
-
-
- public function getSection()
- {
- return $this->hasOne(Section::class, ['id' => 'section_id']);
- }
-
- public function updateWheelPair(array $wheelPairs, array $oilstat, $id = null )
- {
- $count = 0;
- $oilstat = array_reverse($oilstat);
- foreach ($wheelPairs as $pair) {
- $WpLogs = new WpLogs();
- $WpLogs->id_session = $id;
- $WpLogs->old_val = 'token => ' . $pair->token . ' loco_id => ' . $pair->loco_id . ' location => ' . $pair->location . ' section_id => ' . $pair->section_id;
-
- $pair->property = '';
- if (in_array($oilstat[$count]->token, Yii::$app->params['materials'])) {
- $pair->property = $oilstat[$count]->token;
- $pair->token = 'null/'.$pair->location .'/'. $pair->section_id;
- } else {
- $pair->token = $oilstat[$count]->token;
- }
- $WpLogs->new_val = 'token => ' . $pair->token . ' loco_id => ' . $pair->loco_id . ' location => ' . $pair->location . ' section_id => ' . $pair->section_id;
- $WpLogs->save();
-
- $pair->save();
-
- $count++;
- }
- }
- }
|