mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
277 lines
8.5 KiB
PHP
277 lines
8.5 KiB
PHP
|
<?php
|
||
|
include ("_gen/widget.gen.verkaufspreise.php");
|
||
|
|
||
|
class WidgetVerkaufspreise extends WidgetGenVerkaufspreise
|
||
|
{
|
||
|
private $app;
|
||
|
function __construct($app,$parsetarget)
|
||
|
{
|
||
|
$this->app = $app;
|
||
|
$this->parsetarget = $parsetarget;
|
||
|
parent::__construct($app,$parsetarget);
|
||
|
$this->ExtendsForm();
|
||
|
}
|
||
|
|
||
|
function Edit()
|
||
|
{
|
||
|
$id = (int)$this->app->Secure->GetGET('id');
|
||
|
if($this->app->Secure->GetPOST('submit'))
|
||
|
{
|
||
|
$this->app->erp->ObjektProtokoll('verkaufspreise', $id, 'verkaufspreise_edit', 'Verkaufspreis editiert');
|
||
|
}
|
||
|
parent::Edit();
|
||
|
}
|
||
|
|
||
|
function ExtendsForm()
|
||
|
{
|
||
|
$action = $this->app->Secure->GetGET("action");
|
||
|
|
||
|
$this->app->YUI->AutoComplete("adresse","kunde");
|
||
|
//$this->app->YUI->AutoComplete("vpe","vpeartikel");
|
||
|
|
||
|
$this->app->YUI->AutoComplete("projekt","projektname",1);
|
||
|
|
||
|
$this->app->YUI->DatePicker("gueltig_bis");
|
||
|
$this->app->YUI->DatePicker("gueltig_ab");
|
||
|
|
||
|
$this->app->YUI->AutoComplete("gruppe","gruppe");
|
||
|
$this->form->ReplaceFunction("gruppe",$this,"ReplaceGruppe");
|
||
|
|
||
|
$this->form->ReplaceFunction("projekt",$this,"ReplaceProjekt");
|
||
|
$this->form->ReplaceFunction("adresse",$this,"ReplaceKunde");
|
||
|
|
||
|
$this->form->ReplaceFunction("gueltig_bis",$this,"ReplaceDatum");
|
||
|
$this->form->ReplaceFunction("gueltig_ab",$this,"ReplaceDatum");
|
||
|
$this->form->ReplaceFunction("preis",$this,"ReplaceBetrag");
|
||
|
$this->form->ReplaceFunction("ab_menge",$this,"ReplaceAb_menge");
|
||
|
|
||
|
if($action=="verkauf")
|
||
|
{
|
||
|
// liste zuweisen
|
||
|
$pid = $this->app->Secure->GetGET("id");
|
||
|
$this->app->Secure->POST["artikel"]=$pid;
|
||
|
$field = new HTMLInput("artikel","hidden",$pid);
|
||
|
$this->form->NewField($field);
|
||
|
}
|
||
|
|
||
|
$this->app->Secure->POST["firma"]=$this->app->User->GetFirma();
|
||
|
$field = new HTMLInput("firma","hidden",$this->app->User->GetFirma());
|
||
|
$this->form->NewField($field);
|
||
|
$this->app->Tpl->Set('PREISTABELLE','<input type="button" class="button button-secondary" value="Währungumrechnungstabelle" onclick="loadintotable();" />');
|
||
|
$_waehrungen = $this->app->erp->GetWaehrungUmrechnungskurseTabelle('EUR');
|
||
|
$waehrungen['EUR'] = 1;
|
||
|
foreach($_waehrungen as $waehrung => $kurs)$waehrungen[$waehrung] = $kurs;
|
||
|
if($_waehrungen)
|
||
|
{
|
||
|
|
||
|
foreach($waehrungen as $k => $v)$waehrung_felder[$k] = $k;
|
||
|
$field = new HTMLSelect("waehrung",1,"waehrung");
|
||
|
$field->AddOptionsAsocSimpleArray($waehrung_felder);
|
||
|
$this->form->NewField($field);
|
||
|
|
||
|
}
|
||
|
|
||
|
$htmltabelle = "
|
||
|
<script>
|
||
|
var kurs = new Array();
|
||
|
var waehrungen = new Array();
|
||
|
";
|
||
|
|
||
|
$i = -1;
|
||
|
foreach($waehrungen as $waehrung => $kurs)
|
||
|
{
|
||
|
$i++;
|
||
|
$htmltabelle .= "kurs[".$i."] = ".$kurs.";\r\n";
|
||
|
$htmltabelle .= "waehrungen[".$i."] = '".$waehrung."';\r\n";
|
||
|
}
|
||
|
|
||
|
$htmltabelle .= "
|
||
|
|
||
|
function loadintotable() {
|
||
|
var waehrung = $('#waehrung').val();
|
||
|
if(waehrung == '')waehrung = 'EUR';
|
||
|
var preis = parseFloat($('#preis').val().replace(',','.'));
|
||
|
if (isNaN(preis))preis = 0;
|
||
|
var titel = 'Umrechnung von '+preis+' '+waehrung;
|
||
|
$('#preistabellediv').dialog({width: 1000, title:titel});
|
||
|
changerunden();
|
||
|
}
|
||
|
|
||
|
function clickalle()
|
||
|
{
|
||
|
var prop = $('#auswahlalle').prop('checked');
|
||
|
var waehrung = $('#waehrung').val();
|
||
|
var preis = parseFloat($('#preis').val());
|
||
|
var aktwaehrung = 'EUR';
|
||
|
var aktind = -1;
|
||
|
var aktkurs = 1;
|
||
|
$.each(waehrungen, function(k,v){
|
||
|
if(waehrung == v)
|
||
|
{
|
||
|
aktind = k;
|
||
|
$('#auswahl_'+k).prop('checked',false);
|
||
|
} else {
|
||
|
$('#auswahl_'+k).prop('checked',prop);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function anlegen()
|
||
|
{
|
||
|
var str = '';
|
||
|
var gr = $('#gruppe').val();
|
||
|
var adr = $('#adresse').val();
|
||
|
var ar = $('#art').val();
|
||
|
var artnr = $('#kundenartikelnummer').val();
|
||
|
var ab_menge = $('#ab_menge').val();
|
||
|
$.each(waehrungen, function(k,v){
|
||
|
if($('#auswahl_'+k).prop('checked'))
|
||
|
{
|
||
|
if(str != '')str = str + ';';
|
||
|
str = str + $('#waehrung_'+k).html()+':'+$('#preis_'+k).val();
|
||
|
}
|
||
|
});
|
||
|
if(str != '')
|
||
|
{
|
||
|
|
||
|
$.ajax({
|
||
|
url: 'index.php?module=artikel&action=".$this->app->Secure->GetGET('action')."&id=".$this->app->Secure->GetGET('id')."',
|
||
|
type: 'POST',
|
||
|
dataType: 'json',
|
||
|
data: {dat :str, newpreis:1, gruppe:gr, adresse:adr, art:ar, kundenartikelnummer:artnr,menge_ab:ab_menge}
|
||
|
}).done( function(data) {
|
||
|
if (typeof data == 'undefined' || data == null || typeof data.status == 'undefined' || data.status == 0)
|
||
|
{
|
||
|
$('#preiserror').html('<div class=\"error\">Fehler beim Speichern der Verkaufspreise!</div>');
|
||
|
} else {
|
||
|
$('#preistabellediv').dialog('close');
|
||
|
$('#art').parents('.ui-tabs-panel').first().before('<div class=\"error2\" id=\"umrechnungsinfo\">Umrechnungspreise angelegt</div>');
|
||
|
setTimeout(
|
||
|
function(){
|
||
|
$('#umrechnungsinfo').remove();
|
||
|
},5000);
|
||
|
}
|
||
|
}).fail( function( jqXHR, textStatus ) {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
function changerunden()
|
||
|
{
|
||
|
var waehrung = $('#waehrung').val();
|
||
|
var preis = parseFloat($('#preis').val().replace(',','.'));
|
||
|
if (isNaN(preis))preis = 0;
|
||
|
var aktwaehrung = 'EUR';
|
||
|
var aktind = -1;
|
||
|
var aktkurs = 1;
|
||
|
var stellen = parseInt($('#stellen').val());
|
||
|
if (isNaN(stellen))
|
||
|
{
|
||
|
stellen = 0;
|
||
|
}
|
||
|
if(stellen < 0)stellen = 0;
|
||
|
var isstellen = $('#runden').prop('checked');
|
||
|
$.each(waehrungen, function(k,v){
|
||
|
if(waehrung == v)
|
||
|
{
|
||
|
aktwaehrung = waehrung;
|
||
|
}
|
||
|
});
|
||
|
$.each(waehrungen, function(k,v){
|
||
|
if(aktwaehrung == v)
|
||
|
{
|
||
|
aktind = k;
|
||
|
aktkurs = kurs[aktind];
|
||
|
$('#tr_'+k).css('display','none');
|
||
|
} else {
|
||
|
$('#tr_'+k).css('display','');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
$.each(waehrungen, function(k,v){
|
||
|
if(aktwaehrung == v)
|
||
|
{
|
||
|
|
||
|
} else {
|
||
|
$('#kurs_'+k).html(kurs[k]/aktkurs);
|
||
|
var neuerpreis = kurs[k]/aktkurs*preis;
|
||
|
if(isstellen)neuerpreis = Math.round(neuerpreis*Math.pow(10,stellen), stellen)/Math.pow(10,stellen);
|
||
|
$('#preis_'+k).val( neuerpreis);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
<div id=\"preistabellediv\" style=\"display:none;\"><div id=\"preiserror\"></div>
|
||
|
<table><tr><th><input type=\"checkbox\" id=\"auswahlalle\" onchange=\"clickalle();\" /></th><th>Währung</th><th>Kurs</th><th>umgerechnter Preis</th><th></th></tr>
|
||
|
";
|
||
|
$i = -1;
|
||
|
foreach($waehrungen as $waehrung => $kurs)
|
||
|
{
|
||
|
$i++;
|
||
|
|
||
|
$htmltabelle .= "<tr id=\"tr_".$i."\"><td><input type=\"checkbox\" id=\"auswahl_".$i."\" /></td><td><span id=\"waehrung_".$i."\">".$waehrung."</span></td><td><span id=\"kurs_".$i."\">".$kurs."</span></td><td><input type=\"text\" id=\"preis_".$i."\" value=\"\" /></td><td></td></tr>";
|
||
|
}
|
||
|
|
||
|
$htmltabelle .= "<tr><td></td><td></td><td><input type=\"checkbox\" id=\"runden\" onchange=\"changerunden();\" />Runden auf </td><td><input onchange=\"changerunden();\" type=\"text\" id=\"stellen\" value=\"2\" /></td><td> Stellen <input type=\"button\" id=\"anlegen\" value=\"anlegen\" onclick=\"anlegen();\" /></td></tr></table></div>";
|
||
|
|
||
|
|
||
|
$this->app->Tpl->Set('PREISTABELLEPOPUP', $htmltabelle);
|
||
|
|
||
|
}
|
||
|
function ReplaceGruppe($db,$value,$fromform)
|
||
|
{
|
||
|
return $this->app->erp->ReplaceGruppe($db,$value,$fromform);
|
||
|
}
|
||
|
|
||
|
function ReplaceProjekt($db,$value,$fromform)
|
||
|
{
|
||
|
return $this->app->erp->ReplaceProjekt($db,$value,$fromform);
|
||
|
}
|
||
|
|
||
|
function ReplaceKunde($db,$value,$fromform)
|
||
|
{
|
||
|
return $this->app->erp->ReplaceKunde($db,$value,$fromform);
|
||
|
}
|
||
|
|
||
|
function ReplaceDatum($db,$value,$fromform)
|
||
|
{
|
||
|
return $this->app->erp->ReplaceDatum($db,$value,$fromform);
|
||
|
}
|
||
|
|
||
|
function ReplaceBetrag($db,$value,$fromform)
|
||
|
{
|
||
|
return $this->app->erp->ReplaceBetrag($db,$value,$fromform);
|
||
|
}
|
||
|
|
||
|
|
||
|
public function Table()
|
||
|
{
|
||
|
$table = new EasyTable($this->app);
|
||
|
$table->Query("SELECT nummer, name_de as name,barcode, id FROM verkaufspreise order by nummer");
|
||
|
$table->Display($this->parsetarget);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public function Search()
|
||
|
{
|
||
|
$this->app->Tpl->Set($this->parsetarget,"suchmaske");
|
||
|
//$this->app->Table(
|
||
|
//$table = new OrderTable("veranstalter");
|
||
|
//$table->Heading(array('Name','Homepage','Telefon'));
|
||
|
}
|
||
|
|
||
|
function ReplaceAb_menge($db,$value,$fromform)
|
||
|
{
|
||
|
return str_replace(',','.', $value);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|