wareneingang show verbindlichkeit, added warning color class placeholder_warning

This commit is contained in:
OpenXE 2024-07-25 11:48:47 +02:00
parent 3301e1ed55
commit 4ea174e2b8
3 changed files with 19 additions and 7 deletions

View File

@ -164,7 +164,7 @@
</tr>
<tr [BUCHENHIDDEN]>
<td>
<input type=text name="ziellager" id="ziellager" value="[LAGER]" style="width:98%;">
<input type=text name="ziellager" id="ziellager" value="[LAGER]" placeholder="Standardlager" class="placeholder_warning" style="width:98%;">
</td>
</tr>
<tr [ABSCHLIESSENHIDDEN]>

View File

@ -1251,7 +1251,6 @@ class Wareneingang {
['sql' => 'artikel.nummer'],
'</a>',
);
$sql = "SELECT SQL_CALC_FOUND_ROWS
p.pos,
@ -1322,7 +1321,7 @@ class Wareneingang {
break;
case "paketannahme_list":
$allowed['paketannahme_list'] = array('list');
$heading = array('', 'Paket-Nr.', 'Datum', 'Status', 'Name', 'Kunde', 'Lieferant', 'Bestellung', 'LS-Nr.', 'RE-Nr.', 'Bearbeiter', 'Bemerkung', 'Men&uuml;');
$heading = array('', 'Paket-Nr.', 'Datum', 'Status', 'Name', 'Kunde', 'Lieferant', 'Bestellung', 'LS-Nr.', 'RE-Nr.','Verbindlichkeit', 'Bearbeiter', 'Bemerkung', 'Men&uuml;');
$width = array('1%', '5%', '10%', '10%', '10%', '10%', '10%', '10%', '10%', '10%', '10%'); // Fill out manually later
$drop = "'<img src=./themes/new/images/details_open.png class=details>' AS `open`";
@ -1338,6 +1337,7 @@ class Wareneingang {
'bestellung.belegnr',
'paketannahme.lsnr',
'paketannahme.renr',
'verbindlichkeit.belegnr',
'paketannahme.bearbeiter',
'paketannahme.datum',
'paketannahme.bemerkung',
@ -1352,6 +1352,7 @@ class Wareneingang {
'bestellung.belegnr',
'paketannahme.lsnr',
'paketannahme.renr',
'verbindlichkeit.belegnr',
'paketannahme.bearbeiter',
'paketannahme.bemerkung');
@ -1371,7 +1372,8 @@ class Wareneingang {
adresse.lieferantennummer,
GROUP_CONCAT(DISTINCT bestellung.belegnr),
paketannahme.lsnr,
paketannahme.renr,
paketannahme.renr,
GROUP_CONCAT(DISTINCT verbindlichkeit.belegnr),
paketannahme.bearbeiter,
paketannahme.bemerkung,
paketannahme.id
@ -1383,7 +1385,11 @@ class Wareneingang {
LEFT JOIN bestellung_position
ON paketdistribution.bestellung_position = bestellung_position.id
LEFT JOIN bestellung
ON bestellung.id = bestellung_position.bestellung";
ON bestellung.id = bestellung_position.bestellung
LEFT JOIN verbindlichkeit_position
ON verbindlichkeit_position.paketdistribution = paketdistribution.id
LEFT JOIN verbindlichkeit ON verbindlichkeit.id = verbindlichkeit_position.verbindlichkeit
";
$where = "1";

View File

@ -1809,10 +1809,11 @@ a.startpage {
::-ms-input-placeholder { /* Microsoft Edge */
color: #BBB;
}
::placeholder { /* Modern Browser */
color: #BBB;
:placeholder { /* Modern Browser */
color: #F00;
opacity: 1; /* Firefox */
}
input.ui-autocomplete-input::-webkit-input-placeholder {
color: #999;
opacity: 1;
@ -4875,3 +4876,8 @@ tilegrid
padding: 0;
margin: 0;
}
input:placeholder-shown.placeholder_warning {
background-color: var(--warning);
}