add kulcsok, add tartós beszedés, add ticket type with intallments

This commit is contained in:
2016-01-20 14:48:34 +01:00
parent d1638a19de
commit d7cc84e78f
111 changed files with 4077 additions and 12 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace common\components\giro;
use common\components\giro\GiroBase;
/**
* @property common\components\giro\GiroUzenetsorszam $uzenetSorszam
* @property common\components\giro\GiroBankszamla $kezdemenyezoBankszamla
* */
class GiroBeszedLab extends GiroBase{
public $rekordTipus = "03";
public $tetelekSzama = 0;
public $tetelekOsszerteke = 0;
public function GiroBeszedLab(){
}
public function toString(){
return $this->rekordTipus
. $this->szamKitolt($this->tetelekSzama,6)
. $this->szamKitolt($this->tetelekOsszerteke,16)
. $this->rekordVege()
;
}
}