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>
<tr [BUCHENHIDDEN]> <tr [BUCHENHIDDEN]>
<td> <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> </td>
</tr> </tr>
<tr [ABSCHLIESSENHIDDEN]> <tr [ABSCHLIESSENHIDDEN]>

View File

@ -1252,7 +1252,6 @@ class Wareneingang {
'</a>', '</a>',
); );
$sql = "SELECT SQL_CALC_FOUND_ROWS $sql = "SELECT SQL_CALC_FOUND_ROWS
p.pos, p.pos,
p.pos, p.pos,
@ -1322,7 +1321,7 @@ class Wareneingang {
break; break;
case "paketannahme_list": case "paketannahme_list":
$allowed['paketannahme_list'] = array('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 $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`"; $drop = "'<img src=./themes/new/images/details_open.png class=details>' AS `open`";
@ -1338,6 +1337,7 @@ class Wareneingang {
'bestellung.belegnr', 'bestellung.belegnr',
'paketannahme.lsnr', 'paketannahme.lsnr',
'paketannahme.renr', 'paketannahme.renr',
'verbindlichkeit.belegnr',
'paketannahme.bearbeiter', 'paketannahme.bearbeiter',
'paketannahme.datum', 'paketannahme.datum',
'paketannahme.bemerkung', 'paketannahme.bemerkung',
@ -1352,6 +1352,7 @@ class Wareneingang {
'bestellung.belegnr', 'bestellung.belegnr',
'paketannahme.lsnr', 'paketannahme.lsnr',
'paketannahme.renr', 'paketannahme.renr',
'verbindlichkeit.belegnr',
'paketannahme.bearbeiter', 'paketannahme.bearbeiter',
'paketannahme.bemerkung'); 'paketannahme.bemerkung');
@ -1372,6 +1373,7 @@ class Wareneingang {
GROUP_CONCAT(DISTINCT bestellung.belegnr), GROUP_CONCAT(DISTINCT bestellung.belegnr),
paketannahme.lsnr, paketannahme.lsnr,
paketannahme.renr, paketannahme.renr,
GROUP_CONCAT(DISTINCT verbindlichkeit.belegnr),
paketannahme.bearbeiter, paketannahme.bearbeiter,
paketannahme.bemerkung, paketannahme.bemerkung,
paketannahme.id paketannahme.id
@ -1383,7 +1385,11 @@ class Wareneingang {
LEFT JOIN bestellung_position LEFT JOIN bestellung_position
ON paketdistribution.bestellung_position = bestellung_position.id ON paketdistribution.bestellung_position = bestellung_position.id
LEFT JOIN bestellung 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"; $where = "1";

View File

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