2.2.4.2. DRL デザイナーを使用した従業員の勤務表の制約定義
Business Central で Free form DRL デザイナーを使用して、従業員の勤務表サンプルに制約の定義を作成できます。
この手順を使用して、シフトが終わってから 10 時間以上経たないと従業員をシステムに割り当てられない ハード制約 を作成します。
手順
-
Business Central で、Menu
Design Projects に移動して、プロジェクト名をクリックします。 -
Add Asset
DRL ファイル の順にクリックします。 -
DRL file 名前フィールドに、
ComplexScoreRules
と入力します。 -
employeerostering.employeerostering
パッケージを選択します。 - +OK をクリックして DRL ファイルを作成します。
DRL デザイナーの Model タブで、
Employee10HourShiftSpace
ルールを DRL ファイルとして定義します。package employeerostering.employeerostering; rule "Employee10HourShiftSpace" when $shiftAssignment : ShiftAssignment( $employee : employee != null, $shiftEndDateTime : shift.timeslot.endTime) ShiftAssignment( this != $shiftAssignment, $employee == employee, $shiftEndDateTime <= shift.timeslot.endTime, $shiftEndDateTime.until(shift.timeslot.startTime, java.time.temporal.ChronoUnit.HOURS) <10) then scoreHolder.addHardConstraintMatch(kcontext, -1); end
- Save をクリックして、DRL ファイルを保存します。
DRL ファイルの作成方法は DRL ルールを使用したデシジョンサービスの作成 を参照してください。