Your IP : 216.73.216.79


Current Path : /var/www/html/crm/views/salessummarydata/
Upload File :
Current File : /var/www/html/crm/views/salessummarydata/_form.php

<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;

/* @var $this yii\web\View */
/* @var $model app\models\SalesSummaryData */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="sales-summary-data-form">

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

    <?= $form->field($model, 'parent_id')->textInput() ?>

    <?= $form->field($model, 'sales_date')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_doc_no')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_person')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_item_no')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_descr')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_tax')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_qty')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_cost')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_price')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_up')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_amount')->textInput(['maxlength' => true]) ?>

    <?= $form->field($model, 'sales_profit')->textInput(['maxlength' => true]) ?>

    <div class="form-group">
        <?= Html::submitButton('Save', ['class' => 'btn btn-success']) ?>
    </div>

    <?php ActiveForm::end(); ?>

</div>