Skip to content

Commit

Permalink
select by id or name ; add / enhance clauses (date, number, ...) ; ch…
Browse files Browse the repository at this point in the history
…ange example to match default db ; add doc
  • Loading branch information
jygaulier committed Jul 10, 2023
1 parent a175907 commit 52f3c0c
Show file tree
Hide file tree
Showing 5 changed files with 466 additions and 108 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ public function recordsActionsFacilityAction(PhraseaApplication $app, Request $r
$sxml = simplexml_load_string($request->get('xml'));
if (isset($sxml->tasks->task)) {
foreach ($sxml->tasks->task as $sxtask) {
$ret['tasks'][] = $job->calcSQL($app, $sxtask, true);
$ret['tasks'][] = $job->calcSQL($sxtask, true);
}
}
break;
Expand All @@ -518,7 +518,7 @@ public function recordsActionsFacilityAction(PhraseaApplication $app, Request $r
$sxml = simplexml_load_string($request->get('xml'));
if (isset($sxml->tasks->task)) {
foreach ($sxml->tasks->task as $sxtask) {
$ret['tasks'][] = $job->calcSQL($app, $sxtask, false);
$ret['tasks'][] = $job->calcSQL($sxtask, false);
}
}
break;
Expand Down
Loading

0 comments on commit 52f3c0c

Please sign in to comment.