Versi 2.5.0-24011000

HY000 - 2014 - Cannot execute queries while other unbuffered queries are active

  • Edit file RincianTagihanService.php
cd /var/www/html/production/webapps/webservice/module/
nano Pembayaran/src/Pembayaran/V1/Rest/RincianTagihan/RincianTagihanService.php

ubah script pada fungsi listRincianTagihan menjadi

public function listRincianTagihan($tagihan, $status) {
		return $this->execute("CALL pembayaran.listRincianTagihan(?,?)", [$tagihan, $status]);
}

Tekan CTRL x y ENTER untuk menyimpan

kemudian remove file cache

rm -rf /var/www/html/production/webapps/webservice/data/cache/*.php

Special Investigation tidak masuk pada saat grouping

  • Edit file Service.php
cd /var/www/html/production/webapps/webservice/module/
nano webservice/module/INACBGService/src/INACBGService/V5/Service.php

ubah script pada fungsi grouper cari if($cmg->type != "Special Drug") dan sesuaikan seperti dibawah ini:

if($cmg->type != "Special Drug") {
	if($cmg->type == "Special Procedure" && $specpr == "") $scmgs[] = $cmg->code;
	if($cmg->type == "Special Prosthesis" && $specpros == "") $scmgs[] = $cmg->code;
	if($cmg->type != "Special Procedure" || $cmg->type != "Special Prosthesis") $scmgs[] = $cmg->code;
}