commit 10/07/2025

This commit is contained in:
2025-07-10 08:48:12 +07:00
parent e4d2bfa00e
commit 3539fb7d65
3 changed files with 3 additions and 3 deletions

View File

@@ -520,7 +520,7 @@ public class CaptureView {
int totalfiles = files.length;
int counter = 0;
for (String ff : files) {
UploadResult ur = erhaAPI.Upload_File(prefix, ff,false);
UploadResult ur = erhaAPI.Upload_File(prefix, ff,true);
if (ur != null) {
if (ur.message.startsWith("Record has been created")) {
counter++;
@@ -931,7 +931,7 @@ public class CaptureView {
Task<PatientRecord> checkpatientID = new Task<>() {
@Override
protected PatientRecord call() throws Exception {
BarcodeResullt br = erhaAPI.Validate_Barcode(finalbarCode,false);
BarcodeResullt br = erhaAPI.Validate_Barcode(finalbarCode,true);
if (br!=null){
if (br.message.startsWith("Records found")){
if (br.data!=null && br.data.length>0){

View File

@@ -22,7 +22,7 @@ import static Config.SomeCodes.config;
public class MainApplication extends Application {
final String version = "30062025-PRODUCTION-1.0.0";
final String version = "01072025-PRODUCTION-1.0.1";
PhotoCleaner photoCleaner;
@Override
public void start(Stage stage) throws IOException {