Title here
Summary here
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
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;
}