= $this->render('_alert.php') ?>
user->can('admin'))
{
ActiveForm::begin([
'action' => ['/lots/auction', 'id' => $model->id, 'type' => 1],
'id' => 'lot-form',
]); ?>
= ButtonGroupInput::widget([
'name' => 'time_cont',
'items' => ['00:05' => Yii::t('app', '5 хвилин'), '00:10' => Yii::t('app', '10 хвилин')],
'value' => '00:05',
]); ?>
= ButtonGroupInput::widget([
'name' => 'type',
'items' => [
'1' => Yii::t('app', 'Підвищення'),
'2' => Yii::t('app', 'Голландський'),
'3' => Yii::t('app', 'Банкрутство'),
],
'value' => '1',
]); ?>
= DateTimePicker::widget([
'layout' => '{picker}{input}',
'value' => date('Y-m-d H:i', time() + 360),
'name' => 'date_stop',
'options' => ['placeholder' => Yii::t('app', 'DateStop ID')],
'pluginOptions' => [
'autoclose' => true,
'format' => 'yyyy-mm-dd hh:ii',
],
]); ?>
user->can('admin')): ?>
= Html::submitButton(Yii::t('app', 'Створити'), ['class' => 'btn btn-success']); ?>
user->can('org')): ?>
= Html::a('←До Аукціонів', ['lots/index'], ['class' => 'btn btn-info']) ?>
= Yii::t('app', 'Статус'); ?>:
= $status; ?>
Yii::$app->user->id,
'type' => 'bid',
'lot_id' => $model->id,
]))) {
$bidding = new \app\models\Bidding();
$form = ActiveForm::begin([
'action' => Url::to(['/auctions/bid', 'id' => $model->auction->id]),
]); ?>
= $form->field($bidding, 'special_price'); ?>
= Html::submitButton(Yii::t('app', 'Submit'), ['class' => 'btn btn-success']); ?>
= Html::a(Yii::t('app', 'Download file'), ["/files/download", 'id' => $file->id], ['class' => 'btn btn-warning']); ?>
['enctype' => 'multipart/form-data'] // important
]);
echo $form->field($files, 'file')->widget(FileInput::classname(), [
'options' => ['multiple' => true],
'pluginOptions' => [
'initialCaption' => 'файл типу: doc, docx, pdf, jpg, png, zip, rar (розмiр не бiльше 40Мб)',
'showPreview' => true,
'overwriteInitial' => false,
'pluginLoading' => true,
'initialPreviewAsData' => true,
'uploadClass' => 'btn btn-danger',
'removeIcon' => '
',
],
])->label(Yii::t('app', 'DownloadMemeberDoc ID'));
ActiveForm::end();
}
}
?>
= DetailView::widget([
'model' => $model,
'attributes' =>
[
[
'label' => Yii::t('app', 'Circle ID'),
'value' => $circle_down . Html::tag('span', $model->step_down, ['class' => 'lead']) . $circle_up . $circle_change . $time_change . $model->time_step_down,
'format' => 'raw',
],
'aukname',
'name',
'categoryName',
'description',
'auction_date',
'bidding_date',
[
'attribute' => 'start_price',
'value' => $price_nds,
],
[
'attribute' => 'count',
'value' => $model->count,
'visible' => $model->count,
],
[
'attribute' => 'price_per_one',
'value' => $model->unitId ? ($model->start_price / $model->count) : '',
'visible' => $model->unitId ? true : false,
],
[
'attribute' => 'unitName',
'value' => $model->unit ? $model->unit->name : '',
'visible' => $model->unitId ? true : false,
],
'step',
[
'attribute' => 'docs_id',
'value' => $docs,
'format' => 'raw',
],
'address',
'member_require',
'payment_term',
'notes',
[
'attribute' => 'dogovor_id',
'value' => $dogovor,
'format' => 'raw',
],
[
'attribute' => Yii::t('app', 'Registration fee'),
'value' => $registration_fee .
Html::a('
',
[
'/bills/download-requisites',
'id' => $model->billPayRegistration,
],
[
'target' => '_blank',
'title' => Yii::t('app', 'Download bill')
]
),
'format' => 'raw',
],
[
'attribute' => Yii::t('app', 'Guaranteed payment'),
'value' => $guarantee_fee .
Html::a('
',
[
'/bills/download-requisites',
'id' => $model->billPayGuarantee,
],
[
'target' => '_blank',
'title' => Yii::t('app', 'Download bill')
]
),
'format' => 'raw',
],
],
]) ?>