mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 12:07:15 +01:00
lieferantengutschrift artikel manuell bruttopreise
This commit is contained in:
parent
885cf37d29
commit
4e5011c5f5
@ -34,6 +34,9 @@
|
||||
{|Multifilter|}: <img src="./themes/new/images/tooltip_grau.png" border="0" style="position: relative; left: 1px; top: 3px; z-index: 8;" class="wawitooltipicon" title="Auswahl mehrerer Artikel über Name oder Nummer">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" name="bruttoeingabe" value="1" />Bruttopreise eingeben</td>
|
||||
</tr>
|
||||
<tr [HINZUFUEGENHIDDEN]>
|
||||
<td>
|
||||
<input type="text" name="multifilter" id="multifilter" value="[MULTIFILTER]" size="20" style="width:98%;" form="">
|
||||
|
@ -32,9 +32,6 @@
|
||||
<tr>
|
||||
<td><input type="checkbox" id="auswahlallewareneingaenge" onchange="allewareneingaengeauswaehlen();" />{|alle markieren|}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" name="bruttoeingabe" value="1" />Bruttopreise eingeben</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><button [SAVEDISABLED] name="submit" value="positionen_hinzufuegen" class="ui-button-icon" style="width:100%;">Hinzufügen</button></td>
|
||||
</tr>
|
||||
|
@ -685,8 +685,6 @@ class lieferantengutschrift {
|
||||
$werte = $this->app->Secure->GetPOST('werte');
|
||||
$preise = $this->app->Secure->GetPOST('preise');
|
||||
|
||||
$bruttoeingabe = $this->app->Secure->GetPOST('bruttoeingabe');
|
||||
|
||||
foreach ($ids as $key => $verbindlichkeit_position) {
|
||||
$menge = $werte[$key];
|
||||
|
||||
@ -759,10 +757,7 @@ class lieferantengutschrift {
|
||||
} else {
|
||||
$steuersatz = $this->get_steuersatz($umsatzsteuer,$id);
|
||||
}
|
||||
|
||||
if ($bruttoeingabe) {
|
||||
$preis = $preis / (1+($steuersatz/100));
|
||||
}
|
||||
|
||||
$sql = "INSERT INTO lieferantengutschrift_position (lieferantengutschrift,verbindlichkeit_position, menge, preis, steuersatz, artikel, kontorahmen) VALUES ($id, $verbindlichkeit_position, $menge, $preis, $steuersatz, $einartikel, $kontorahmen)";
|
||||
$this->app->DB->Insert($sql);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user