add reception key changes, add money movent storno, status display

This commit is contained in:
2016-01-22 19:10:30 +01:00
parent a2a6b1f240
commit 027a96790a
24 changed files with 220 additions and 25 deletions

View File

@@ -5,6 +5,11 @@ namespace common\components;
use \Yii;
class Helper {
public static function getDateTimeString(){
return date("Y-m-d H:i:s");
}
public static function hufRound($m) {
$result = round ( $m / 5, 0 ) * 5;
return $result;