Skip to content

Commit

Permalink
Merge pull request #111 from leon-mbs/dev
Browse files Browse the repository at this point in the history
4.6.1
  • Loading branch information
leon-mbs authored Sep 10, 2020
2 parents 953ccb6 + 9f96d3c commit 44448cf
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

### v4.6.1 (2020-09-02)
* Исправления и улучшения.

Для обновления версии обновить папки app, templates, templates_ua

### v4.6.0 (2020-08-02)
* Добавлен модуль поиска автозапчастей по базе аналогов TECDOC .

Expand Down
1 change: 1 addition & 0 deletions www/app/pages/register/itemlist.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public function itemlistOnRow($row) {
$store = $this->filter->searchstore->getValue();
$row->add(new Label('itemname', $item->itemname));
$row->add(new Label('code', $item->item_code));
$row->add(new Label('brand', $item->manufacturer));
$row->add(new Label('msr', $item->msr));

$qty = $item->getQuantity($store);
Expand Down
1 change: 1 addition & 0 deletions www/app/pages/report/price.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ private function generateReport() {
"code" => $item->item_code,
"name" => $item->itemname,
"cat" => $item->cat_name,
"brand" => $item->manufacturer,
"msr" => $item->msr,
"price1" => $isp1 ? $item->getPrice('price1') : "",
"price2" => $isp2 ? $item->getPrice('price2') : "",
Expand Down
2 changes: 1 addition & 1 deletion www/app/pages/userlogin.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct() {
$this->setError('');


$curver = 'v4.6.0';
$curver = 'v4.6.1';
$this->_tvars['curversion'] = $curver;

//проверка новой версии
Expand Down
2 changes: 2 additions & 0 deletions www/templates/pages/register/itemlist.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ <h3>Товары на складе </h3>

<th>Артикул</th>
<th>Категория</th>
<th>Бренд</th>
<th>Ед.</th>

<th class="text-right ">Мин. Кол.</th>
Expand All @@ -67,6 +68,7 @@ <h3>Товары на складе </h3>

<td zippy="code" class=" text-nowrap"></td>
<td zippy="cat_name"></td>
<td zippy="brand"></td>
<td zippy="msr"></td>

<td zippy="minqty" class="text-right "></td>
Expand Down
2 changes: 2 additions & 0 deletions www/templates/printforms/report/price.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<th>Код</th>
<th>Ед.Изм.</th>
<th>Категория</th>
<th>Бренд</th>

<th>{{price1name}}</th>
<th>{{price2name}}</th>
Expand All @@ -29,6 +30,7 @@
<td>{{code}}</td>
<td>{{msr}}</td>
<td>{{cat}}</td>
<td>{{brand}}</td>

<td align="right">{{price1}}</td>
<td align="right">{{price2}}</td>
Expand Down
2 changes: 2 additions & 0 deletions www/templates_ua/pages/register/itemlist.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ <h3>Товари на складі </h3>

<th>Артикул</th>
<th>Категорія</th>
<th>Бренд</th>
<th>Од.</th>

<th class="text-right ">Мін. Кіл.</th>
Expand All @@ -67,6 +68,7 @@ <h3>Товари на складі </h3>

<td zippy="code" class=" text-nowrap"></td>
<td zippy="cat_name"></td>
<td zippy="brand"></td>
<td zippy="msr"></td>

<td zippy="minqty" class="text-right "></td>
Expand Down
3 changes: 2 additions & 1 deletion www/templates_ua/printforms/report/price.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<th>Код</th>
<th>Од. вим.</th>
<th>Категорія</th>

<th>Бренд</th>
<th>{{price1name}}</th>
<th>{{price2name}}</th>
<th>{{price3name}}</th>
Expand All @@ -29,6 +29,7 @@
<td>{{code}}</td>
<td>{{msr}}</td>
<td>{{cat}}</td>
<td>{{brand}}</td>

<td align="right">{{price1}}</td>
<td align="right">{{price2}}</td>
Expand Down

0 comments on commit 44448cf

Please sign in to comment.