_search.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model app\models\OrderreturnSearch */
  6. /* @var $form yii\widgets\ActiveForm */
  7. ?>
  8. <div class="orderreturn-search">
  9. <?php $form = ActiveForm::begin([
  10. 'action' => ['index'],
  11. 'method' => 'get',
  12. ]); ?>
  13. <?= $form->field($model, 'id',['options'=>['class'=>"form-group-line"]]) ?>
  14. <?= $form->field($model, 'deliveryid' ,['options'=>['class'=>"form-group-line"]])?>
  15. <?= $form->field($model, 'website',['options'=>['class'=>"form-group-line"]]) ?>
  16. <?= $form->field($model, 'customer',['options'=>['class'=>"form-group-line"]]) ?>
  17. <?= $form->Field($model, 'delivery',['options'=>['class'=>"form-group-line"]]) ?>
  18. <?php // echo $form->field($model, 'origin_goodsinfo') ?>
  19. <?php // echo $form->field($model, 'goodsinfo') ?>
  20. <?php // echo $form->field($model, 'usage') ?>
  21. <?php // echo $form->field($model, 'receiptdate') ?>
  22. <?php // echo $form->field($model, 'num') ?>
  23. <?php // echo $form->field($model, 'mark') ?>
  24. <div class="form-group-line">
  25. <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
  26. <?= Html::resetButton('Reset', ['class' => 'btn btn-outline-secondary']) ?>
  27. </div>
  28. <?php ActiveForm::end(); ?>
  29. </div>