Skip to content
Snippets Groups Projects
valueProcess.js 481 B
import("system.vars");
import("KeywordRegistry_basic");
import("system.result");
import("Sql_lib");

result.string(newSelect("count(*)")
                            .from("VISITPLANENTRY")
                            .where("VISITPLANENTRY.VISITPLANEMPLOYEEWEEK_ID", vars.get("$field.VISITPLANEMPLOYEEWEEKID"))
                            .and("VISITPLANENTRY.STATUS_APPOINTMENT", $KeywordRegistry.visitPlanEntryStatusAppointment$requested())
                            .cell());