2020-11-19 23:14:48 +01:00
< ? php
require_once ( __DIR__ . '/../dbutils.php' );
class Operations {
public static function createOperation ( $pdo , $opType , $table ,
$logtime ,
$trans ,
$signtxt ,
$tseSignature ,
$pubkeyRef ,
$sigalgRef ,
$serialNoRef ,
$certificateRef ,
$sigcounter ,
$tseerror ) {
$terminalInfo = Terminals :: getTerminalInfo ();
$terminalEntryId = Terminals :: createOrReferenceTerminalDbEntry ( $pdo , $terminalInfo );
$range = RANGE_ORDER ;
if ( $opType == DbUtils :: $PROCESSTYPE_VORGANG ) {
$range = RANGE_ORDER ;
} else if ( $opType == DbUtils :: $PROCESSTYPE_BELEG ) {
$range = RANGE_BILL ;
2020-11-19 23:14:58 +01:00
} else if ( $opType == DbUtils :: $PROCESSTYPE_SONSTIGER_VORGANG ) {
$range = RANGE_CLOSING ;
2020-11-19 23:14:48 +01:00
}
$sql = " SELECT MAX(COALESCE(bonid,0)) as maxbonid FROM %operations% WHERE typerange=? " ;
$res = CommonUtils :: fetchSqlAll ( $pdo , $sql , array ( $range ));
$maxbonid = intval ( $res [ 0 ][ " maxbonid " ]);
$sql = " SELECT MAX(COALESCE(id,0)) as maxid FROM %operations% " ;
$res = CommonUtils :: fetchSqlAll ( $pdo , $sql );
$maxid = intval ( $res [ 0 ][ " maxid " ]);
$sql = " INSERT INTO %operations% (id,typerange,bonid,processtype,handledintable,logtime,trans,sigcounter,tsesignature,pubkey,sigalg,serialno,certificate,signtxt,tseerror,terminalid) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) " ;
CommonUtils :: execSql ( $pdo , $sql , array ( $maxid + 1 , $range , $maxbonid + 1 , $opType , $table , $logtime , $trans , $sigcounter , $tseSignature , $pubkeyRef , $sigalgRef , $serialNoRef , $certificateRef , $signtxt , $tseerror , $terminalEntryId ));
$opid = $pdo -> lastInsertId ();
return $opid ;
}
}