Пример #1
0
use yii\web\View;
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
use backend\models\sales\Sales;
use backend\models\master\Branch;
/* @var $this View */
/* @var $model Sales */
/* @var $form ActiveForm */
?>
<div class="row">
    <div class="col-md-4">
        <?php 
echo $form->field($model, 'number')->textInput(['readonly' => true, 'style' => 'width:40%;']);
?>
        <?php 
echo $form->field($model, 'branch_id')->dropDownList(Branch::selectOptions());
?>
    </div>
    <div class="col-md-4">
        <?php 
echo $form->field($model, 'vendor_name')->textInput([]);
?>
        <?php 
echo Html::activeHiddenInput($model, 'vendor_id');
?>
        <?php 
echo $form->field($model, 'Date')->widget('yii\\jui\\DatePicker', ['dateFormat' => 'dd-MM-yyyy', 'options' => ['class' => 'form-control', 'style' => 'width:40%;']]);
?>
    </div>
    <div class="col-md-4">
        <?php 
Пример #2
0
use yii\helpers\Html;
use yii\grid\GridView;
use backend\models\inventory\Transfer;
use backend\models\inventory\search\Transfer as TransferSearch;
use backend\models\master\Branch;
/* @var $this yii\web\View */
/* @var $searchModel TransferSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Transfer';
$this->params['breadcrumbs'][] = $this->title;
?>
<p class='pull-right'>
    <?php 
echo Html::a('Create Transfer', ['create'], ['class' => 'btn btn-default']);
?>
</p>
<br>

<div class="transfer-index">

    <?php 
// echo $this->render('_search', ['model' => $searchModel]);
?>


    <?php 
echo GridView::widget(['dataProvider' => $dataProvider, 'tableOptions' => ['class' => 'table table-hover'], 'filterModel' => $searchModel, 'columns' => [['class' => 'yii\\grid\\SerialColumn'], 'number', ['attribute' => 'branch_id', 'value' => 'branch.name', 'filter' => Branch::selectOptions()], ['attribute' => 'branch_dest_id', 'value' => 'branchDest.name', 'filter' => Branch::selectOptions()], ['attribute' => 'Date'], ['attribute' => 'status', 'value' => 'nmStatus', 'filter' => Transfer::enums('STATUS_')], ['class' => 'yii\\grid\\ActionColumn']]]);
?>

</div>
Пример #3
0
?>
        <div class="col-md-2">
            <?php 
echo $form->field($model, 'number')->textInput(['readonly' => true]);
?>
            <?php 
echo $form->field($model, 'Date')->widget('yii\\jui\\DatePicker', ['dateFormat' => 'dd-MM-yyyy', 'options' => ['class' => 'form-control']]);
?>
            
        </div>
        <div class="col-md-4">
            <?php 
echo $form->field($model->branch, 'name')->textInput(['readOnly' => true]);
?>
            <?php 
echo $form->field($model, 'branch_dest_id')->dropDownList(Branch::selectOptions(), ['prompt' => '--destination--', 'readonly' => true]);
?>
        </div>
        <div class="col-md-6">
            <?php 
echo $form->field($model, 'value')->textInput(['style' => 'width:40%;']);
?>
            <?php 
echo $form->field($model, 'branch_id')->hiddenInput()->label(false);
?>
        </div>
        <div class="nav-tabs-justified col-lg-12"  style="margin-top: 20px;">
            <ul class="nav nav-tabs">
                <li class="active"><a href="#item" data-toggle="tab" aria-expanded="false">Items</a></li>
                <li><a href="#notes" data-toggle="tab" aria-expanded="false">Notes</a></li>
                <li class="pull-right">
Пример #4
0
use yii\web\JsExpression;
use mdm\admin\models\User;
use yii\jui\AutoComplete;
/* @var $this yii\web\View */
/* @var $model app\models\master\U2Branch */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="u2-branch-form">

    <?php 
$form = ActiveForm::begin();
?>

    <?php 
echo $form->field($model, 'branch_id')->dropDownList(\backend\models\master\Branch::selectOptions(), ['style' => 'width:60%;'])->label('Branch');
?>

    <?php 
$data = User::find()->select(['username as value', 'username as  label', 'id as id'])->asArray()->all();
echo AutoComplete::widget(['model' => $model, 'attribute' => 'user_name', 'options' => ['class' => 'form-control'], 'clientOptions' => ['source' => $data, 'autoFill' => true, 'minLength' => '1', 'select' => new JsExpression("function( event, ui ) {\n                \$('#u2branch-user_id').val(ui.item.id);\n             }"), 'search' => new JsExpression("function( event, ui ) {\n                \$('#u2branch-user_id').val('');\n             }")]]);
?>

    <?php 
echo $form->field($model, 'user_id')->hiddenInput()->label(false);
?>

    <div class="form-group">
        <?php 
echo Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']);
?>
Пример #5
0
/* @var $model backend\models\sales\search\SalesDtl */
/* @var $form yii\widgets\ActiveForm */
/*
 * Create By Mujib Masyhudi <*****@*****.**>
 * Create at {date('now')}
 */
?>
 
<?php 
$form = ActiveForm::begin(['method' => 'get']);
?>
 
<div class="sales-dtl-search">
    <div class="col-lg-12">
        <?php 
echo $form->field($model, 'branch_id')->dropDownList(Branch::selectOptions(), ['style' => 'width:16%;', 'prompt' => '-- All --'])->label('Branch');
?>
    </div>
    <div class="col-lg-2">
        <?php 
echo $form->field($model, 'FrDate')->widget(\yii\jui\DatePicker::className(), ['dateFormat' => 'dd-MM-yyyy', 'options' => ['class' => 'form-control']]);
?>
    
    </div>
    <div class="col-lg-2">
        <?php 
echo $form->field($model, 'ToDate')->widget(\yii\jui\DatePicker::className(), ['dateFormat' => 'dd-MM-yyyy', 'options' => ['class' => 'form-control']]);
?>
    
    </div>    
    <div class="col-lg-8 form-group"> 
Пример #6
0
/* @var $this yii\web\View */
/* @var $model backend\models\accounting\GlHeader */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="gl-header-form">

    <?php 
$form = ActiveForm::begin();
?>
    <div class="col-lg-4">
        <?php 
echo $form->field($model, 'number')->textInput(['maxlength' => true, 'style' => 'width:30%;']);
?>
        <?php 
echo $form->field($model, 'branch_id')->dropDownList(Branch::selectOptions(), ['style' => 'width:40%;']);
?>
    </div>
    <div class="col-lg-4">      
        <?php 
echo $form->field($model, 'GlDate')->widget('yii\\jui\\DatePicker', ['dateFormat' => 'dd-MM-yyyy', 'options' => ['class' => 'form-control', 'style' => 'width:30%;']]);
?>
        <?php 
echo $form->field($model, 'periode_id')->dropDownList(backend\models\accounting\AccPeriode::selectOptions(), ['style' => 'width:40%;']);
?>
    </div>
    <div class="col-lg-4">      
        <?php 
$list_status = $model::enums('STATUS_');
$nlist = [];
foreach ($list_status as $key => $dval) {