mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-22 03:55:36 +01:00
Migliorie minori
This commit is contained in:
parent
7b0d4e3d51
commit
7ed9a7f50f
@ -34,7 +34,7 @@ Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://k
|
|||||||
|
|
||||||
## 2.4.21 (2021-01-14)
|
## 2.4.21 (2021-01-14)
|
||||||
|
|
||||||
## Aggiunto (Added)
|
### Aggiunto (Added)
|
||||||
- Aggiunto fallback selezione IVA per natura mancante in fase di import fattura di acquisto
|
- Aggiunto fallback selezione IVA per natura mancante in fase di import fattura di acquisto
|
||||||
- Aggiunto filtro periodo anche per stampe mastrini di livello 1 e 2
|
- Aggiunto filtro periodo anche per stampe mastrini di livello 1 e 2
|
||||||
- Aggiunta gestione peso e volume automatici per DDT e Fatture
|
- Aggiunta gestione peso e volume automatici per DDT e Fatture
|
||||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -150,7 +150,7 @@ if (!empty($results)) {
|
|||||||
|
|
||||||
if (!empty($foreign_keys)) {
|
if (!empty($foreign_keys)) {
|
||||||
echo '
|
echo '
|
||||||
<table class="table table-bordered table-striped">
|
<table class="table table-bordered">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>'.tr('Foreign keys').'</th>
|
<th>'.tr('Foreign keys').'</th>
|
||||||
@ -161,8 +161,14 @@ if (!empty($results)) {
|
|||||||
<tbody>';
|
<tbody>';
|
||||||
|
|
||||||
foreach ($foreign_keys as $name => $diff) {
|
foreach ($foreign_keys as $name => $diff) {
|
||||||
|
|
||||||
|
if(count($diff) == 2 && array_key_exists('current',$diff) && $diff['current'] == null ){
|
||||||
|
$class="info";
|
||||||
|
}else{
|
||||||
|
$class="warning";
|
||||||
|
}
|
||||||
echo '
|
echo '
|
||||||
<tr>
|
<tr class="bg-'.$class.'" >
|
||||||
<td>
|
<td>
|
||||||
'.$name.'
|
'.$name.'
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user