Browse Source

[Administration] Documents : nommage automatique par défaut

develop
Guillaume Bourgeois 2 weeks ago
parent
commit
414a5624d4
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      backend/controllers/DocumentController.php

+ 3
- 1
backend/controllers/DocumentController.php View File

$json['orders_update_array'] = $document ? $this->initOrdersArray($orderModule->findOrdersByUserAndDeliveryNote($user, $document)) : []; $json['orders_update_array'] = $document ? $this->initOrdersArray($orderModule->findOrdersByUserAndDeliveryNote($user, $document)) : [];
} }


if ($typeAction == 'create' && ($classDocument == 'Invoice' || $classDocument == 'DeliveryNote')) {
if ($producerModule->getSolver()->getConfig('option_document_default_naming')
&& $typeAction == 'create'
&& ($classDocument == 'Invoice' || $classDocument == 'DeliveryNote')) {
$json['name'] = $documentModule->getSolver()->getDefaultName($classDocument, $user); $json['name'] = $documentModule->getSolver()->getDefaultName($classDocument, $user);
} }



Loading…
Cancel
Save