Skip to content

Commit

Permalink
カスタムフィールドのタイプ「関連データ」を利用する場合、初期値とフィルターが反映されない fix #3175
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Apr 20, 2024
1 parent df5edcd commit e23145a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,10 @@
]) ?>
<i class="bca-icon--question-circle bca-help"></i>
<div class="bca-helptext">
<?php echo __d('baser_core', '日付(年月日時間)の場合は、2024/02/14 10:00 のように、日付と時間をスペースで区切ってください。') ?>
<ul>
<li><?php echo __d('baser_core', '日付(年月日時間)の場合は、2024/02/14 10:00 のように、日付と時間をスペースで区切ってください。') ?></li>
<li><?php echo __d('baser_core', '関連データの場合は、対象データの No を指定してください。') ?></li>
</ul>
</div>
<?php echo $this->BcAdminForm->error('default_value') ?>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public function getList(array $options = [])
$table = $this->CustomEntries->CustomTables->get($this->CustomEntries->tableId);
$this->CustomEntries->setDisplayField($table->display_field);
if ($table->has_child) {
return $this->getParentTargetList(null, $options['conditions']);
return $this->getParentTargetList(null, $options);
} else {
return $this->CustomEntries->find('list')->where($options['conditions'])->toArray();
}
Expand Down

0 comments on commit e23145a

Please sign in to comment.