portal.mkgtu.ru/backend/views/scan/update.php

24 lines
451 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?php
use common\models\AttachmentType;
$this->title = 'Обновление типа скан-копии ' . $model->name;
?>
<?php if (isset($model->admissionCampaignRef)) : ?>
<div class="alert alert-info">
Данные получены из 1С
</div>
<?php endif ?>
<?php echo $this->render(
'_form',
[
'model' => $model,
'entities' => $entities,
'document_types' => $document_types
]
);