add inventory item fast edit
This commit is contained in:
parent
576a9ba2dc
commit
e79187c50e
31
backend/assets/InventoryItemUpdateAsset.php
Normal file
31
backend/assets/InventoryItemUpdateAsset.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace backend\assets;
|
||||
|
||||
use yii\web\AssetBundle;
|
||||
|
||||
/**
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
class InventoryItemUpdateAsset extends AssetBundle
|
||||
{
|
||||
public $basePath = '@webroot';
|
||||
public $baseUrl = '@web';
|
||||
public $css = [
|
||||
];
|
||||
public $js = [
|
||||
'js/app.js',
|
||||
'js/inventory,item.update.js',
|
||||
];
|
||||
public $depends = [
|
||||
'backend\assets\AppAsset',
|
||||
'yii\jui\JuiAsset',
|
||||
'common\assets\TypeAheadAsset',
|
||||
];
|
||||
}
|
||||
@ -2,15 +2,14 @@
|
||||
|
||||
namespace backend\controllers;
|
||||
|
||||
use Yii;
|
||||
use /** @noinspection PhpMethodOrClassCallIsNotCaseSensitiveInspection */
|
||||
Yii;
|
||||
use common\models\Inventory;
|
||||
use backend\models\InventorySearch;
|
||||
use yii\web\Controller;
|
||||
use yii\web\NotFoundHttpException;
|
||||
use yii\filters\VerbFilter;
|
||||
use common\models\User;
|
||||
use yii\db\Query;
|
||||
use backend\models\InventoryItemSearch;
|
||||
use common\models\InventoryItem;
|
||||
use common\components\Helper;
|
||||
|
||||
|
||||
@ -2,9 +2,12 @@
|
||||
|
||||
namespace backend\controllers;
|
||||
|
||||
use Yii;
|
||||
use /** @noinspection PhpMethodOrClassCallIsNotCaseSensitiveInspection */
|
||||
Yii;
|
||||
use common\models\InventoryItem;
|
||||
use backend\models\InventoryItemSearch;
|
||||
use yii\base\Exception;
|
||||
use yii\db\Query;
|
||||
use yii\web\Controller;
|
||||
use yii\web\NotFoundHttpException;
|
||||
use yii\filters\VerbFilter;
|
||||
@ -33,15 +36,17 @@ class InventoryItemController extends Controller
|
||||
|
||||
/**
|
||||
* Lists all InventoryItem models.
|
||||
* @param $id
|
||||
* @return mixed
|
||||
* @throws NotFoundHttpException
|
||||
*/
|
||||
public function actionIndex($id)
|
||||
{
|
||||
$inventory = Inventory::findOne($id);
|
||||
$inventory = Inventory::findOne($id);
|
||||
|
||||
if ( !isset($inventory)){
|
||||
throw new NotFoundHttpException("Leltár nem található");
|
||||
}
|
||||
if (!isset($inventory)) {
|
||||
throw new NotFoundHttpException("Leltár nem található");
|
||||
}
|
||||
|
||||
$searchModel = new InventoryItemSearch(['inventory' => $inventory]);
|
||||
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
||||
@ -49,89 +54,95 @@ class InventoryItemController extends Controller
|
||||
$productOptions = Product::buildProductAndInventoryGroupList();
|
||||
|
||||
if ($searchModel->output == 'xls') {
|
||||
$this->downloadIndexXls($dataProvider);
|
||||
}else{
|
||||
Url::remember(Url::current(),"inventory-item-index");
|
||||
$this->downloadIndexXls($dataProvider);
|
||||
} else {
|
||||
Url::remember(Url::current(), "inventory-item-index");
|
||||
}
|
||||
|
||||
|
||||
return $this->render('index', [
|
||||
'model' => $inventory,
|
||||
'model' => $inventory,
|
||||
'searchModel' => $searchModel,
|
||||
'dataProvider' => $dataProvider,
|
||||
'productOptions' =>$productOptions
|
||||
'productOptions' => $productOptions
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
protected function downloadIndexXls($dataProvider){
|
||||
/**
|
||||
* @param $dataProvider
|
||||
*/
|
||||
protected function downloadIndexXls($dataProvider)
|
||||
{
|
||||
|
||||
|
||||
$defs = [['item_created_at', 'Létrehozva'],
|
||||
['item_name', 'Termék/Termék csoport'],
|
||||
['user_username', 'Felhasználó'],
|
||||
['item_count_prev', 'Előző leltár (db)'],
|
||||
['item_count_sold', 'Eladott mennyiség (db)'],
|
||||
['item_count_in', 'Beszerzett mennyiség (db)'],
|
||||
['item_count', 'Leltározott mennyiség (db)'],
|
||||
['item_difference', 'Különbség (db)'],
|
||||
['item_count_system', 'Rendszer szerinti mennyiség (db)'],
|
||||
];
|
||||
$cols = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P'];
|
||||
$defs = [['item_created_at', 'Létrehozva'],
|
||||
['item_name', 'Termék/Termék csoport'],
|
||||
['user_username', 'Felhasználó'],
|
||||
['item_count_prev', 'Előző leltár (db)'],
|
||||
['item_count_sold', 'Eladott mennyiség (db)'],
|
||||
['item_count_in', 'Beszerzett mennyiség (db)'],
|
||||
['item_count', 'Leltározott mennyiség (db)'],
|
||||
['item_difference', 'Különbség (db)'],
|
||||
['item_count_system', 'Rendszer szerinti mennyiség (db)'],
|
||||
];
|
||||
$cols = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P'];
|
||||
|
||||
$models = $dataProvider->getModels ();
|
||||
$objPHPExcel = new \PHPExcel ();
|
||||
/** @noinspection PhpUndefinedMethodInspection */
|
||||
$models = $dataProvider->getModels();
|
||||
/** @noinspection PhpUndefinedClassInspection */
|
||||
$objPHPExcel = new \PHPExcel ();
|
||||
|
||||
$sheet = $objPHPExcel->setActiveSheetIndex ( 0 );
|
||||
/**
|
||||
* Termék azonosító Termék neve Termék szám Termék vonalkód Termék raktáron Termék eladva
|
||||
*/
|
||||
$row = 1;
|
||||
$col = 0;
|
||||
foreach ( $defs as $def ) {
|
||||
$sheet->setCellValue ( $cols [$col] . $row, $def [1] );
|
||||
$col ++;
|
||||
}
|
||||
$sheet = $objPHPExcel->setActiveSheetIndex(0);
|
||||
/**
|
||||
* Termék azonosító Termék neve Termék szám Termék vonalkód Termék raktáron Termék eladva
|
||||
*/
|
||||
$row = 1;
|
||||
$col = 0;
|
||||
foreach ($defs as $def) {
|
||||
$sheet->setCellValue($cols [$col] . $row, $def [1]);
|
||||
$col++;
|
||||
}
|
||||
|
||||
foreach ( $models as $model ) {
|
||||
$row ++;
|
||||
$col = 0;
|
||||
foreach ( $defs as $def ) {
|
||||
$sheet->setCellValue ( $cols [$col] . $row, $model[$def [0]] );
|
||||
$col ++;
|
||||
}
|
||||
}
|
||||
foreach ($models as $model) {
|
||||
$row++;
|
||||
$col = 0;
|
||||
foreach ($defs as $def) {
|
||||
$sheet->setCellValue($cols [$col] . $row, $model[$def [0]]);
|
||||
$col++;
|
||||
}
|
||||
}
|
||||
|
||||
$styleArray = array (
|
||||
'font' => array (
|
||||
'bold' => true
|
||||
)
|
||||
);
|
||||
// 'color' => array('rgb' => 'FF0000'),
|
||||
// 'size' => 15,
|
||||
// 'name' => 'Verdana'
|
||||
$styleArray = array(
|
||||
'font' => array(
|
||||
'bold' => true
|
||||
)
|
||||
);
|
||||
// 'color' => array('rgb' => 'FF0000'),
|
||||
// 'size' => 15,
|
||||
// 'name' => 'Verdana'
|
||||
|
||||
|
||||
foreach (range('A', 'I') as $columnID) {
|
||||
$sheet->getColumnDimension($columnID)->setAutoSize(true);
|
||||
$sheet->getStyle($columnID . '1')->applyFromArray($styleArray);
|
||||
}
|
||||
|
||||
foreach ( range ( 'A', 'I' ) as $columnID ) {
|
||||
$sheet->getColumnDimension ( $columnID )->setAutoSize ( true );
|
||||
$sheet->getStyle ( $columnID . '1' )->applyFromArray ( $styleArray );
|
||||
}
|
||||
|
||||
// Redirect output to a client’s web browser (Excel5)
|
||||
header ( 'Content-Type: application/vnd.ms-excel' );
|
||||
header ( 'Content-Disposition: attachment;filename="leltar.xls"' );
|
||||
header ( 'Cache-Control: max-age=0' );
|
||||
// If you're serving to IE 9, then the following may be needed
|
||||
header ( 'Cache-Control: max-age=1' );
|
||||
// If you're serving to IE over SSL, then the following may be needed
|
||||
header ( 'Expires: Mon, 26 Jul 1997 05:00:00 GMT' ); // Date in the past
|
||||
header ( 'Last-Modified: ' . gmdate ( 'D, d M Y H:i:s' ) . ' GMT' ); // always modified
|
||||
header ( 'Cache-Control: cache, must-revalidate' ); // HTTP/1.1
|
||||
header ( 'Pragma: public' ); // HTTP/1.0
|
||||
$objWriter = \PHPExcel_IOFactory::createWriter ( $objPHPExcel, 'Excel5' );
|
||||
$objWriter->save ( 'php://output' );
|
||||
exit ();
|
||||
// Redirect output to a client’s web browser (Excel5)
|
||||
header('Content-Type: application/vnd.ms-excel');
|
||||
header('Content-Disposition: attachment;filename="leltar.xls"');
|
||||
header('Cache-Control: max-age=0');
|
||||
// If you're serving to IE 9, then the following may be needed
|
||||
header('Cache-Control: max-age=1');
|
||||
// If you're serving to IE over SSL, then the following may be needed
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
|
||||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); // always modified
|
||||
header('Cache-Control: cache, must-revalidate'); // HTTP/1.1
|
||||
header('Pragma: public'); // HTTP/1.0
|
||||
/** @noinspection PhpUndefinedClassInspection */
|
||||
$objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
|
||||
$objWriter->save('php://output');
|
||||
exit ();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -149,12 +160,14 @@ class InventoryItemController extends Controller
|
||||
/**
|
||||
* Creates a new InventoryItem model.
|
||||
* If creation is successful, the browser will be redirected to the 'view' page.
|
||||
* @param Integer $id the item id
|
||||
* @return mixed
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function actionCreate($id)
|
||||
{
|
||||
$model = new InventoryItemForm([
|
||||
'id_inventory' => $id
|
||||
'id_inventory' => $id
|
||||
]);
|
||||
|
||||
$model->read();
|
||||
@ -173,38 +186,123 @@ class InventoryItemController extends Controller
|
||||
* If update is successful, the browser will be redirected to the 'view' page.
|
||||
* @param integer $id
|
||||
* @return mixed
|
||||
* @throws NotAcceptableHttpException
|
||||
* @throws NotFoundHttpException
|
||||
*/
|
||||
public function actionUpdate($id)
|
||||
{
|
||||
$model = $this->findModel($id);
|
||||
$inventory = Inventory::findOne($model->id_inventory);
|
||||
|
||||
if ( !$inventory->isOpen()){
|
||||
throw new NotAcceptableHttpException("A leltár elem nem található");
|
||||
if (!$inventory->isOpen()) {
|
||||
throw new NotAcceptableHttpException("A leltár elem nem található");
|
||||
}
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
|
||||
|
||||
$model->recalculateTotalPriceBrutto();
|
||||
$model->recalculateTotalPriceBrutto();
|
||||
|
||||
$model->save(false);
|
||||
$model->save(false);
|
||||
|
||||
$prev = Url::previous("inventory-item-index");
|
||||
$prev = Url::previous("inventory-item-index");
|
||||
|
||||
if ( isset($prev)){
|
||||
return $this->redirect($prev);
|
||||
}else{
|
||||
return $this->redirect([ 'index', 'id' => $inventory->id_inventory ]);
|
||||
}
|
||||
if (isset($prev)) {
|
||||
return $this->redirect($prev);
|
||||
} else {
|
||||
return $this->redirect(['index', 'id' => $inventory->id_inventory]);
|
||||
}
|
||||
|
||||
} else {
|
||||
return $this->render('update', [
|
||||
'model' => $model,
|
||||
'inventory' => $inventory,
|
||||
'inventory' => $inventory,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param integer $id the inventory item id
|
||||
* @return string
|
||||
* @throws Exception
|
||||
* @throws NotAcceptableHttpException
|
||||
* @throws NotFoundHttpException
|
||||
*/
|
||||
public function actionUpdateItem($id)
|
||||
{
|
||||
|
||||
$model = $this->findModel($id);
|
||||
$inventory = Inventory::findOne($model->id_inventory);
|
||||
|
||||
|
||||
if (Yii::$app->request->getIsAjax()) {
|
||||
$arr = [
|
||||
'id_inventory_item' => $model->id_inventory_item,
|
||||
'productName' => $model->productName,
|
||||
'count' => $model->count,
|
||||
'type' => $model->type
|
||||
];
|
||||
|
||||
return json_encode($arr);
|
||||
} else {
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) && $model->validate()) {
|
||||
|
||||
$model->recalculateTotalPriceBrutto();
|
||||
|
||||
if ( $model->save(false) ){
|
||||
\Yii::$app->session->setFlash('success', "Mennyiség elmentve: " . $model->productName . ' - ' .$model->count . ' db');
|
||||
}else{
|
||||
\Yii::error("Nem sikerült elmenteni a leltár element.");
|
||||
throw new Exception("Nem sikerült elmenteni a leltár element");
|
||||
}
|
||||
|
||||
return $this->redirect(['update-item', 'id' => $model->id_inventory_item]);
|
||||
|
||||
}
|
||||
|
||||
|
||||
$query = new Query();
|
||||
$query->select([
|
||||
'product.id_product as product_id_product',
|
||||
'product.name as product_name',
|
||||
'account.name as account_name',
|
||||
'product_category.name as product_category_name',
|
||||
'inventory_item.id_inventory_item as inventory_item_id_inventory_item',
|
||||
]);
|
||||
$query->from(['product']);
|
||||
|
||||
$query
|
||||
->innerJoin("product_category", "product_category.id_product_category = product.id_product_category")
|
||||
->innerJoin("account", "product.id_account = account.id_account")
|
||||
->innerJoin("inventory_item", "inventory_item.id_product = product.id_product")
|
||||
->andWhere(["inventory_item.id_inventory" => $model->id_inventory])->all();
|
||||
$productsRaw = $query->all();
|
||||
|
||||
|
||||
$products = [];
|
||||
foreach ($productsRaw as $product ){
|
||||
$arr = [];
|
||||
$arr['id_inventory_item'] = $product['inventory_item_id_inventory_item'];
|
||||
$arr['id_product'] = $product['product_id_product'];
|
||||
$arr['name'] = $product['product_name'] ."( ". $product['account_name'].")";
|
||||
$arr['product_name'] = $product['account_name'] ;
|
||||
$products[] = $arr;
|
||||
}
|
||||
|
||||
if (!$inventory->isOpen()) {
|
||||
throw new NotAcceptableHttpException("A leltár elem nem található");
|
||||
}
|
||||
|
||||
return $this->render("update_item", [
|
||||
'model' => $model,
|
||||
'inventory' => $inventory,
|
||||
'products' => $products
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Deletes an existing InventoryItem model.
|
||||
* If deletion is successful, the browser will be redirected to the 'index' page.
|
||||
|
||||
@ -373,14 +373,17 @@ class UgiroController extends Controller {
|
||||
* @return mixed
|
||||
*/
|
||||
public function actionDelete($id) {
|
||||
|
||||
$this->findModel ( $id )->delete ();
|
||||
|
||||
return $this->redirect ( [
|
||||
'index'
|
||||
] );
|
||||
|
||||
}
|
||||
public function actionDetsta() {
|
||||
$ugiro = Ugiro::findOne ( 31 );
|
||||
|
||||
$model = new DetStatProcessor ( [
|
||||
'koteg' => $ugiro
|
||||
] );
|
||||
|
||||
@ -8,9 +8,9 @@ use yii\widgets\ActiveForm;
|
||||
/* @var $form yii\widgets\ActiveForm */
|
||||
?>
|
||||
|
||||
<div class="inventory-item-form">
|
||||
<div id="inventory-form" class="inventory-item-form">
|
||||
|
||||
<?php $form = ActiveForm::begin(); ?>
|
||||
<?php $form = ActiveForm::begin( ); ?>
|
||||
|
||||
<?= $form->field($model, 'type')->hiddenInput()->label(false) ?>
|
||||
<?= $form->field($model, 'count')->textInput() ?>
|
||||
|
||||
63
backend/views/inventory-item/update_item.php
Normal file
63
backend/views/inventory-item/update_item.php
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\widgets\DetailView;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\InventoryItem */
|
||||
|
||||
$this->title = Yii::t('common/inventory-item', 'Leltár termék');
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/inventory-item', 'Inventory Items'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = ['label' => $model->id_inventory_item, 'url' => ['view', 'id' => $model->id_inventory_item]];
|
||||
$this->params['breadcrumbs'][] = Yii::t('common/inventory-item', 'Update');
|
||||
|
||||
\backend\assets\InventoryItemUpdateAsset::register($this);
|
||||
|
||||
$options = [];
|
||||
$options['products'] = $products;
|
||||
$options['url_find_inventory_item'] = \yii\helpers\Url::toRoute(['inventory-item/update-item']);
|
||||
$options['url_save'] = \yii\helpers\Url::toRoute(['inventory-item/update-item']);
|
||||
$options['id_product'] = $model->id_product;
|
||||
|
||||
$this->registerJs('FitnessAdmin.InventoryItem.Update.init( '. json_encode( $options ) .' );');
|
||||
?>
|
||||
<div class="inventory-item-update">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<h2>Leltár</h2>
|
||||
<?= DetailView::widget([
|
||||
'model' => $inventory,
|
||||
'attributes' => [
|
||||
'id_inventory',
|
||||
'name',
|
||||
['attribute'=>'id_user',
|
||||
'value'=>$inventory->userName
|
||||
],
|
||||
['attribute'=>'id_account',
|
||||
'value'=>$inventory->accountName
|
||||
],
|
||||
'created_at:datetime',
|
||||
],
|
||||
]) ?>
|
||||
|
||||
<?php $form = \yii\widgets\ActiveForm::begin(); ?>
|
||||
|
||||
<?php echo Html::textInput("product_autocomplete","",['class' => 'form-control', 'id' => 'product_autocomplete','autocomplete' => 'off']) ?>
|
||||
<?php echo Html::hiddenInput("product_id","",[ 'id' => 'product_id','autocomplete' => 'off']) ?>
|
||||
|
||||
<?php \yii\widgets\ActiveForm::end(); ?>
|
||||
|
||||
<h2>Termék</h2>
|
||||
<table class="table table-striped table-bordered detail-view">
|
||||
<tbody><tr><th>Név</th><td id="inventory_product_name"> <?php echo Html::getAttributeValue($model, 'name') ?> </td></tr></tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
|
||||
</div>
|
||||
123
backend/web/js/inventory,item.update.js
Normal file
123
backend/web/js/inventory,item.update.js
Normal file
@ -0,0 +1,123 @@
|
||||
var FitnessAdmin;
|
||||
|
||||
FitnessAdmin = {};
|
||||
|
||||
FitnessAdmin.InventoryItem = {};
|
||||
|
||||
FitnessAdmin.InventoryItem.Update = new function(){
|
||||
|
||||
var defaults = {
|
||||
'selector_product' : '#product_autocomplete',
|
||||
'url_find_inventory_item' : 'inventory-item/update-item',
|
||||
"products" : [],
|
||||
"url_save" : '',
|
||||
"id_product": null
|
||||
};
|
||||
|
||||
var _SELECTORS = {
|
||||
INVENTORY_PRODUCT_NAME: '#inventory_product_name',
|
||||
INVENTORYITEM_TYPE: '#inventoryitem-type',
|
||||
INVENTORYITEM_COUNT: '#inventoryitem-count',
|
||||
INVENTORY_FORM: '#inventory-form'
|
||||
};
|
||||
|
||||
var product = null;
|
||||
|
||||
this.init = function (options) {
|
||||
defaults = $.extend(defaults,options);
|
||||
createGUI();
|
||||
preselectProduct();
|
||||
};
|
||||
|
||||
var preselectProduct = function () {
|
||||
if ( defaults.id_product ){
|
||||
for (var i = 0; i < defaults.products.length ;i++ ){
|
||||
var p = defaults.products[i];
|
||||
if ( p.id_product == defaults.id_product){
|
||||
$(defaults.selector_product).val(p.name);
|
||||
}
|
||||
}
|
||||
}
|
||||
$(defaults.selector_product).focus().select();
|
||||
};
|
||||
|
||||
var createGUI = function () {
|
||||
initAutoComplete();
|
||||
};
|
||||
|
||||
var initAutoComplete = function () {
|
||||
var $input = $(defaults.selector_product);
|
||||
$input.typeahead({source : defaults.products,
|
||||
autoSelect: true,
|
||||
items: 20,
|
||||
minLength: 3
|
||||
});
|
||||
$input.change(function() {
|
||||
var current = $input.typeahead("getActive");
|
||||
$("#filter_text").val('');
|
||||
if (current) {
|
||||
// Some item from your model is active!
|
||||
if (current.name == $input.val()) {
|
||||
// This means the exact match is found. Use toLowerCase() if you want case insensitive match.
|
||||
//noinspection JSUnresolvedVariable
|
||||
console.info(current);
|
||||
_findProduct(current.id_inventory_item);
|
||||
} else {
|
||||
// This means it is only a partial match, you can either add a new item
|
||||
// or take the active if you don't want new items
|
||||
product = null;
|
||||
renderForm();
|
||||
}
|
||||
} else {
|
||||
// Nothing is active so it is a new value (or maybe empty value)
|
||||
product = null;
|
||||
renderForm();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var selectInventoryItem = function (data) {
|
||||
console.info('data',data);
|
||||
product = data;
|
||||
};
|
||||
|
||||
var _findProduct = function (id){
|
||||
var data, url;
|
||||
|
||||
url = defaults.url_find_inventory_item;
|
||||
data = {
|
||||
'id' : id
|
||||
};
|
||||
|
||||
$.ajax({
|
||||
dataType: "json",
|
||||
url: url,
|
||||
data: data
|
||||
}).then(selectInventoryItem).then(renderForm);
|
||||
};
|
||||
|
||||
function renderForm( ) {
|
||||
console.info( "render",product);
|
||||
var name = "",type = "",count = "";
|
||||
if ( product){
|
||||
name = product.productName;
|
||||
type = product.type;
|
||||
if ( product.count ){
|
||||
count = product.count;
|
||||
}
|
||||
}
|
||||
$(_SELECTORS.INVENTORY_PRODUCT_NAME).html(name);
|
||||
$(_SELECTORS.INVENTORYITEM_TYPE).html(type);
|
||||
$(_SELECTORS.INVENTORYITEM_COUNT).html(count);
|
||||
|
||||
var form = $(_SELECTORS.INVENTORY_FORM).find('form');
|
||||
|
||||
if ( product == null ){
|
||||
form.hide();
|
||||
}else {
|
||||
form.show();
|
||||
form.attr('action', defaults.url_save +"&id="+product.id_inventory_item);
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
@ -26,8 +26,6 @@ function WasteCreate(o){
|
||||
|
||||
|
||||
function initAutocomplete(){
|
||||
// var colors = ["red", "blue", "green", "yellow", "brown", "black"];
|
||||
// $('#product_search').typeahead( {source: colors } );
|
||||
|
||||
var $input = $(defaults.selector_product);
|
||||
console.info("len:" + $input.length);
|
||||
@ -69,10 +67,9 @@ function WasteCreate(o){
|
||||
|
||||
function _findProduct(id){
|
||||
var data, url;
|
||||
|
||||
url = defaults.url_product_find;
|
||||
data = {
|
||||
'id' : id,
|
||||
'id' : id
|
||||
};
|
||||
|
||||
$.ajax({
|
||||
|
||||
@ -23,11 +23,11 @@ use common\components\ProductAwareBehavior;
|
||||
* @property integer $id_inventory_group
|
||||
* @property integer $id_user
|
||||
* @property integer $id_inventory_item_prev
|
||||
* @property integer $id_user
|
||||
* @property integer $price_brutto
|
||||
* @property integer $total_price_brutto
|
||||
* @property string $created_at
|
||||
* @property string $updated_at
|
||||
* @property mixed productName
|
||||
*/
|
||||
class InventoryItem extends BaseFitnessActiveRecord
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user