Skip to content
Snippets Groups Projects
Commit 2279961b authored by Alexander Purr's avatar Alexander Purr Committed by Robert Lange
Browse files

refs #20234 [fid_bbi] order editing for admins, improved order listings

* adding order-list and order-edit-form configuration fid.ini
* remove template acquisition-contact-details.phtml (moved to fid branch before)
parent 94ccba1a
No related merge requests found
...@@ -12,4 +12,26 @@ permission_options[] = 'extended_access' ...@@ -12,4 +12,26 @@ permission_options[] = 'extended_access'
permission_options[] = 'full_access' permission_options[] = 'full_access'
[Forms] [Forms]
jobTitleOptions = "0,2,3,1" jobTitleOptions = "0,2,3,1"
\ No newline at end of file
[OrderList]
displayCols[] = 'type'
displayCols[] = 'status'
displayCols[] = 'dueDate'
displayCols[] = 'edit'
displayCols[] = 'delete'
[pdaEdit]
form = 'complete'
statusOptions[] = 'open'
statusOptions[] = 'processing'
statusOptions[] = 'loan'
statusOptions[] = 'completed'
statusOptions[] = 'closed'
[digitizationEdit]
form = 'basic'
statusOptions[] = 'open'
statusOptions[] = 'processing'
statusOptions[] = 'completed'
statusOptions[] = 'closed'
\ No newline at end of file
<?php
/** @var \fid\Service\DataTransferObject\User $user */
/** @var \fid\Service\DataTransferObject\Address $address */
$address = $this->user->getDeliveryAddress();
?>
<h2><?=$this->translate("fid::acquisition_delivery_to")?></h2>
<table class="table table-striped">
<tbody>
<tr>
<th><?= $this->translate("fid::acquisition_order_delivery_name") ?></th>
<td><?= $this->user->getFirstname() ?> <?= $this->user->getLastname() ?></td>
</tr>
<tr>
<th><?= $this->translate("Email Address") ?></th>
<td><?= $this->user->getUsername() ?></td>
</tr>
</tbody>
</table>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment