У меня есть 3 таблицы:
клиенты:
клиенты *
услуги:
услуги
customerservices:
customerservicestable
С этим соотношением в CustomerservicesTable.php
:
$this->belongsTo('Customers')
->setForeignKey('customerid');
$this->belongsTo('Services')
->setForeignKey('serviceid');
В Customers
редактироватьстраница Я хочу добавить таблицу с Services
конкретного клиента (а затем добавить нового, редактировать существующий и т. д.).
Итак, в Template\Customers\edit.ctp
у меня есть эта таблица:
<h3><?= __('Services') ?></h3>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<th scope="col"><?= $this->Paginator->sort('Date') ?></th>
<th scope="col"><?= $this->Paginator->sort('Service') ?></th>
<th scope="col"><?= $this->Paginator->sort('Price') ?></th>
<th scope="col" class="actions"><?= __('Actions') ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($services as $service): ?>
<tr>
<td><?= h($service->created) ?></td>
<td><?= h($service->title) ?></td>
<td><?= $this->Number->format($service->price) ?></td>
<td class="actions">
<?= $this->Html->link(__('View'), ['action' => 'view', $customer->id]) ?>
<?= $this->Html->link(__('Edit'), ['action' => 'edit', $customer->id]) ?>
<?= $this->Form->postLink(__('Delete'), ['action' => 'delete', $customer->id], ['confirm' => __('Are you sure you want to delete # {0}?', $customer->id)]) ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
и в функции edit
Controller\CustomersController.php
я добавил следующие строки:
//Get customerservices for specific customer
$servicesTable = TableRegistry::get('Services');
$services = $servicesTable->find('all');//->where(['Services.Customerservices.id =' => $this->data['Customers']['id']]);
$this->set(compact('services'));
И я прокомментировал часть where
.Как я могу изменить его, чтобы получать только те услуги, которые принадлежат конкретному клиенту?используя customerservicesTable
?
И после этого я могу редактировать непосредственно CustomerservicesController.php
для реализации функций добавления, редактирования этой таблицы?
EDIT
После предложения ndm я изменил его так:
//Get customerservices for specific customer
$servicesTable = TableRegistry::get('Services');
$services = $servicesTable->find()->matching('Customerservices', function(\Cake\ORM\Query $q) {
return $q->where(['Customerservices.customerid' => $this->data['Customers']['id']]);
});
Но это не работает.Вероятно, $this->data['Customers']['id']
не работает, потому что, если я заменю его на 1 (идентификатор клиента), он будет работать как положено.Есть идеи, почему не работает?