選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

788 行
29KB

  1. <?php
  2. /**
  3. * Copyright distrib (2018)
  4. *
  5. * contact@opendistrib.net
  6. *
  7. * Ce logiciel est un programme informatique servant à aider les producteurs
  8. * à distribuer leur production en circuits courts.
  9. *
  10. * Ce logiciel est régi par la licence CeCILL soumise au droit français et
  11. * respectant les principes de diffusion des logiciels libres. Vous pouvez
  12. * utiliser, modifier et/ou redistribuer ce programme sous les conditions
  13. * de la licence CeCILL telle que diffusée par le CEA, le CNRS et l'INRIA
  14. * sur le site "http://www.cecill.info".
  15. *
  16. * En contrepartie de l'accessibilité au code source et des droits de copie,
  17. * de modification et de redistribution accordés par cette licence, il n'est
  18. * offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons,
  19. * seule une responsabilité restreinte pèse sur l'auteur du programme, le
  20. * titulaire des droits patrimoniaux et les concédants successifs.
  21. *
  22. * A cet égard l'attention de l'utilisateur est attirée sur les risques
  23. * associés au chargement, à l'utilisation, à la modification et/ou au
  24. * développement et à la reproduction du logiciel par l'utilisateur étant
  25. * donné sa spécificité de logiciel libre, qui peut le rendre complexe à
  26. * manipuler et qui le réserve donc à des développeurs et des professionnels
  27. * avertis possédant des connaissances informatiques approfondies. Les
  28. * utilisateurs sont donc invités à charger et tester l'adéquation du
  29. * logiciel à leurs besoins dans des conditions permettant d'assurer la
  30. * sécurité de leurs systèmes et ou de leurs données et, plus généralement,
  31. * à l'utiliser et l'exploiter dans les mêmes conditions de sécurité.
  32. *
  33. * Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
  34. * pris connaissance de la licence CeCILL, et que vous en avez accepté les
  35. * termes.
  36. */
  37. namespace backend\controllers;
  38. use common\helpers\Price;
  39. use common\models\DeliveryNote;
  40. use common\models\Invoice;
  41. use common\models\PointSale;
  42. use common\models\Product;
  43. use common\models\Quotation;
  44. use common\models\User;
  45. use common\models\Document;
  46. use common\helpers\GlobalParam;
  47. use common\models\Order;
  48. use common\models\UserProducer;
  49. use kartik\mpdf\Pdf;
  50. use yii\base\UserException;
  51. use yii;
  52. class DocumentController extends BackendController
  53. {
  54. public function behaviors()
  55. {
  56. return [
  57. 'verbs' => [
  58. 'class' => VerbFilter::className(),
  59. 'actions' => [
  60. ],
  61. ],
  62. 'access' => [
  63. 'class' => AccessControl::className(),
  64. 'rules' => [
  65. [
  66. 'allow' => true,
  67. 'roles' => ['@'],
  68. 'matchCallback' => function ($rule, $action) {
  69. return User::hasAccessBackend();
  70. }
  71. ]
  72. ],
  73. ],
  74. ];
  75. }
  76. public function actionGeneratePdfValidatedDocuments()
  77. {
  78. set_time_limit(0);
  79. $validatedDocumentsArray = array_merge(
  80. Quotation::find()->where(['status' => Document::STATUS_VALID])->all(),
  81. DeliveryNote::find()->where(['status' => Document::STATUS_VALID])->all(),
  82. Invoice::find()->where(['status' => Document::STATUS_VALID])->all()
  83. );
  84. foreach($validatedDocumentsArray as $document) {
  85. if(!file_exists($document->getFilenameComplete())) {
  86. $document->generatePdf(Pdf::DEST_FILE);
  87. }
  88. }
  89. }
  90. public function actionCreate()
  91. {
  92. $class = $this->getClass();
  93. $model = new $class();
  94. $model->initTaxCalculationMethod();
  95. if ($model->load(Yii::$app->request->post())) {
  96. $model->id_producer = GlobalParam::getCurrentProducerId();
  97. if ($model->save()) {
  98. $this->processInvoiceViaDeliveryNotes($model);
  99. Yii::$app->getSession()->setFlash('success', $this->getFlashMessage('create', $model));
  100. return $this->redirect(['/' . $this->getControllerUrl() . '/update', 'id' => $model->id]);
  101. } else {
  102. Yii::$app->getSession()->setFlash('error', 'Un problème est survenu lors de la création du document.');
  103. }
  104. }
  105. return $this->render('/document/create', [
  106. 'title' => $this->getTitle('Ajouter'),
  107. 'typeDocument' => $this->getDocumentType(),
  108. 'model' => $model,
  109. ]);
  110. }
  111. public function processInvoiceViaDeliveryNotes($model)
  112. {
  113. if ($model->getClass() == 'Invoice') {
  114. if ($model->deliveryNotes && is_array($model->deliveryNotes) && count($model->deliveryNotes)) {
  115. foreach ($model->deliveryNotes as $key => $idDeliveryNote) {
  116. Order::updateAll([
  117. 'id_invoice' => $model->id
  118. ], [
  119. 'id_delivery_note' => $idDeliveryNote
  120. ]);
  121. }
  122. }
  123. }
  124. }
  125. /**
  126. * Modifie un modèle Produit existant.
  127. * Si la modification réussit, le navigateur est redirigé vers la page 'index'.
  128. *
  129. * @param integer $id
  130. * @return mixed
  131. */
  132. public function actionUpdate($id)
  133. {
  134. $model = $this->findModel($id);
  135. if (!$model) {
  136. throw new NotFoundHttpException('Le document n\'a pas été trouvé.');
  137. }
  138. if ($model && $model->load(Yii::$app->request->post()) && $model->save()) {
  139. Yii::$app->getSession()->setFlash('success', $this->getFlashMessage('update', $model));
  140. }
  141. return $this->render('/document/update', [
  142. 'title' => $this->getTitle('Modifier'),
  143. 'typeDocument' => $this->getDocumentType(),
  144. 'model' => $model,
  145. ]);
  146. }
  147. public function actionDelete($id)
  148. {
  149. $model = $this->findModel($id);
  150. if ($model->isStatusValid()) {
  151. throw new UserException('Vous ne pouvez pas supprimer un document validé.');
  152. }
  153. $model->delete();
  154. if ($this->getClass() == 'DeliveryNote') {
  155. Order::updateAll([
  156. 'order.id_delivery_note' => null
  157. ], [
  158. 'order.id_delivery_note' => $id
  159. ]);
  160. }
  161. if ($this->getClass() == 'Quotation') {
  162. Order::updateAll([
  163. 'order.id_quotation' => null
  164. ], [
  165. 'order.id_quotation' => $id
  166. ]);
  167. }
  168. if ($this->getClass() == 'Invoice') {
  169. Order::updateAll([
  170. 'order.id_invoice' => null
  171. ], [
  172. 'order.id_invoice' => $id
  173. ]);
  174. }
  175. Yii::$app->getSession()->setFlash('success', $this->getFlashMessage('delete', $model));
  176. $this->redirect([$this->getControllerUrl() . '/index']);
  177. }
  178. public function actionExportCsvEvoliz($id)
  179. {
  180. $datas = [];
  181. $document = $this->findModel($id);
  182. // données
  183. $datas[] = [
  184. 'N° facture externe *',
  185. 'Date facture *',
  186. 'Client',
  187. 'Code client *',
  188. 'Total TVA',
  189. 'Total HT',
  190. 'Total TTC',
  191. 'Total réglé',
  192. 'Etat',
  193. 'Date Etat',
  194. 'Date de création',
  195. 'Objet',
  196. 'Date d\'échéance',
  197. 'Date d\'exécution',
  198. 'Taux de pénalité',
  199. 'Frais de recouvrement',
  200. 'Taux d\'escompte',
  201. 'Conditions de règlement *',
  202. 'Mode de paiement',
  203. 'Remise globale',
  204. 'Acompte',
  205. 'Nombre de relance',
  206. 'Commentaires',
  207. 'N° facture',
  208. 'Annulé',
  209. 'Catalogue',
  210. 'Réf.',
  211. 'Désignation *',
  212. 'Qté *',
  213. 'Unité',
  214. 'PU HT *',
  215. 'Remise',
  216. 'TVA',
  217. 'Total TVA',
  218. 'Total HT',
  219. 'Créateur',
  220. ];
  221. foreach($document->getProductsOrders() as $productOrderArray) {
  222. foreach($productOrderArray as $productOrder) {
  223. $price = $productOrder->getPrice() ;
  224. if($document->isInvoicePrice() && $productOrder->getInvoicePrice()) {
  225. $price = $productOrder->getInvoicePrice() ;
  226. }
  227. $typeTotal = $document->isInvoicePrice() ? Order::INVOICE_AMOUNT_TOTAL : Order::AMOUNT_TOTAL;
  228. $priceTotal = $productOrder->getPriceByTypeTotal($typeTotal) * $productOrder->quantity;
  229. $tva = Price::getVat(
  230. $priceTotal,
  231. $productOrder->taxRate->value,
  232. $document->tax_calculation_method
  233. );
  234. $datas[] = [
  235. $document->reference, // N° facture externe *
  236. date('d/m/Y', strtotime($document->date)), // Date facture *
  237. '', // Client
  238. $document->user->evoliz_code, // Code client *
  239. '', // Total TVA
  240. '', // Total HT
  241. '', // Total TTC
  242. '', // Total réglé
  243. '', // Etat
  244. '', // Date Etat
  245. '', // Date de création
  246. $document->name, // Objet
  247. '', // Date d'échéance
  248. '', // Date d'exécution
  249. '', // Taux de pénalité
  250. '', // Frais de recouvrement
  251. '', // Taux d\'escompte
  252. 'A réception', // Conditions de règlement *
  253. '', // Mode de paiement
  254. '', // Remise globale
  255. '', // Acompte
  256. '', // Nombre de relance
  257. '', // Commentaires
  258. '', // N° facture
  259. '', // Annulé
  260. 'Non', // Catalogue
  261. '', // Réf.
  262. $productOrder->product->name, // Désignation *
  263. $productOrder->quantity, // Qté *
  264. '', // Product::strUnit($productOrder->unit, 'wording'), // Unité
  265. $price, // PU HT *
  266. '', // Remise
  267. $productOrder->taxRate->value * 100, // TVA
  268. $tva, // Total TVA
  269. $priceTotal, // Total HT
  270. '', // Créateur
  271. ];
  272. }
  273. }
  274. // nom fichier
  275. $reference = $document->id;
  276. if($document->reference && strlen($document->reference)) {
  277. $reference = $document->reference;
  278. }
  279. // status
  280. $status = '';
  281. if($document->isStatusDraft()) {
  282. $status = 'brouillon_';
  283. }
  284. CSV::downloadSendHeaders(strtolower($this->getDocumentType()).'_' . $status . $reference . '.csv');
  285. echo CSV::array2csv($datas);
  286. die();
  287. }
  288. public function actionDownload($id)
  289. {
  290. $document = $this->findModel($id);
  291. return $document->downloadPdf();
  292. }
  293. public function actionRegenerate($id)
  294. {
  295. $document = $this->findModel($id);
  296. $document->downloadPdf(true);
  297. Yii::$app->getSession()->setFlash('success', 'Le document PDF a bien été regénéré.');
  298. return $this->redirect([$this->getControllerUrl() . '/update', 'id' => $id]);
  299. }
  300. public function actionSend($id, $backUpdateForm = false)
  301. {
  302. $document = $this->findModel($id);
  303. if ($document->send()) {
  304. $document->is_sent = true;
  305. $document->save();
  306. Yii::$app->getSession()->setFlash('success', $this->getFlashMessage('send', $document));
  307. } else {
  308. Yii::$app->getSession()->setFlash('danger', $this->getFlashMessage('send', $document));
  309. }
  310. if($backUpdateForm) {
  311. return $this->redirect([$this->getControllerUrl() . '/update', 'id' => $id]);
  312. }
  313. else {
  314. return $this->redirect([$this->getControllerUrl() . '/index']);
  315. }
  316. }
  317. public function actionAjaxUserInfos($typeAction, $idUser, $classDocument, $idDocument = false)
  318. {
  319. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  320. if ($idUser > 0) {
  321. $user = User::searchOne([
  322. 'id' => $idUser
  323. ]);
  324. if ($user) {
  325. $document = null;
  326. if (Document::isValidClass($classDocument)) {
  327. $document = $classDocument::searchOne([
  328. 'id' => $idDocument,
  329. 'id_user' => $idUser
  330. ]);
  331. }
  332. if ($document && $document->id_user == $user->id) {
  333. $address = $document->address;
  334. } else {
  335. $address = $user->getFullAddress();
  336. }
  337. $json = [
  338. 'return' => 'success',
  339. 'address' => $address
  340. ];
  341. if ($classDocument == 'Invoice') {
  342. $options = [
  343. 'orderby' => 'distribution.date ASC',
  344. 'join_with' => ['user AS user_delivery_note', 'orders', 'producer']
  345. ];
  346. $deliveryNotesCreateArray = DeliveryNote::searchAll([
  347. 'id_user' => $user->id,
  348. 'status' => Document::STATUS_VALID
  349. ], $options);
  350. $deliveryNotesUpdateArray = DeliveryNote::searchAll([
  351. 'id_user' => $user->id,
  352. 'status' => Document::STATUS_VALID,
  353. 'order.id_invoice' => $idDocument
  354. ], $options);
  355. $json['delivery_note_create_array'] = $this->initDeliveryNoteArray('create', $deliveryNotesCreateArray);
  356. $json['delivery_note_update_array'] = $this->initDeliveryNoteArray('update', $deliveryNotesUpdateArray);
  357. }
  358. return $json;
  359. }
  360. }
  361. return ['return' => 'error'];
  362. }
  363. public function initDeliveryNoteArray($type, $deliveryNoteArrayResults)
  364. {
  365. $deliveryNoteArray = [];
  366. $isCreate = false;
  367. if($type == 'create') {
  368. $isCreate = true;
  369. }
  370. if($deliveryNoteArrayResults) {
  371. foreach ($deliveryNoteArrayResults as $deliveryNote) {
  372. $deliveryNoteData = $this->addDeliveryNoteToArray($deliveryNote, $isCreate);
  373. if($deliveryNoteData) {
  374. $deliveryNoteArray[] = $deliveryNoteData;
  375. }
  376. }
  377. }
  378. return $deliveryNoteArray;
  379. }
  380. public function addDeliveryNoteToArray($deliveryNote, $isCreate = true)
  381. {
  382. $deliveryNoteData = array_merge(
  383. $deliveryNote->getAttributes(),
  384. [
  385. 'url' => Yii::$app->urlManager->createUrl(['delivery-note/update', 'id' => $deliveryNote->id]),
  386. 'total' => $deliveryNote->getAmountWithTax(Order::INVOICE_AMOUNT_TOTAL)
  387. ]
  388. );
  389. if (($isCreate && !$deliveryNote->isInvoiced()) || !$isCreate) {
  390. return $deliveryNoteData;
  391. }
  392. return false;
  393. }
  394. public function actionValidate($id, $backUpdateForm = false)
  395. {
  396. $classDocument = $this->getClass();
  397. if ($id > 0 && Document::isValidClass($classDocument)) {
  398. $document = $classDocument::searchOne([
  399. 'id' => $id
  400. ]);
  401. if ($document) {
  402. $document->changeStatus(Document::STATUS_VALID);
  403. $document->save();
  404. // génération PDF
  405. $document->generatePdf(Pdf::DEST_FILE);
  406. Yii::$app->getSession()->setFlash('success', $this->getFlashMessage('validate', $document));
  407. if($backUpdateForm) {
  408. return $this->redirect([$this->getControllerUrl() . '/update', 'id' => $id]);
  409. }
  410. else {
  411. return $this->redirect([$this->getControllerUrl() . '/index']);
  412. }
  413. }
  414. }
  415. Yii::$app->getSession()->setFlash('danger', 'Une erreur est survenue lors de la validation du document.');
  416. return $this->redirect([$this->getControllerUrl() . '/index']);
  417. }
  418. public function actionAjaxValidateDocument($idDocument, $classDocument)
  419. {
  420. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  421. if ($idDocument > 0 && Document::isValidClass($classDocument)) {
  422. $document = $classDocument::searchOne([
  423. 'id' => $idDocument
  424. ]);
  425. if ($document) {
  426. $document->changeStatus(Document::STATUS_VALID);
  427. $document->save();
  428. return [
  429. 'return' => 'success',
  430. 'alert' => [
  431. 'type' => 'success',
  432. 'message' => 'Document validé'
  433. ]
  434. ];
  435. }
  436. }
  437. return [
  438. 'return' => 'error',
  439. 'alert' => [
  440. 'type' => 'danger',
  441. 'message' => 'Une erreur est survenue lors de la validation du document.'
  442. ]
  443. ];
  444. }
  445. public function actionAjaxInit($idDocument, $classDocument)
  446. {
  447. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  448. if ($idDocument > 0 && Document::isValidClass($classDocument)) {
  449. $document = $classDocument::searchOne([
  450. 'id' => $idDocument
  451. ]);
  452. if ($document) {
  453. $productsArray = Product::searchAll([], [
  454. 'orderby' => 'product.order ASC'
  455. ]);
  456. $ordersArray = [];
  457. foreach ($document->orders as $order) {
  458. $order->init();
  459. $productsOrderArray = [];
  460. foreach ($order->productOrder as $productOrder) {
  461. $productsOrderArray[$productOrder->id] = array_merge($productOrder->getAttributes(), [
  462. 'url_order' => Yii::$app->urlManager->createUrl(['distribution/index', 'idOrderUpdate' => $productOrder->id_order])
  463. ]);
  464. }
  465. $ordersArray[$order->id] = array_merge(
  466. $order->getAttributes(),
  467. [
  468. 'username' => $order->getUsername(),
  469. 'distribution_date' => isset($order->distribution) ? date(
  470. 'd/m/Y',
  471. strtotime(
  472. $order->distribution->date
  473. )
  474. ) : null,
  475. 'point_sale_name' => isset($order->pointSale) ? $order->pointSale->name : null,
  476. 'productOrder' => $productsOrderArray,
  477. ]
  478. );
  479. }
  480. $userProducer = UserProducer::searchOne([
  481. 'id_user' => $document->user->id,
  482. 'id_producer' => GlobalParam::getCurrentProducerId()
  483. ]);
  484. $pointSale = PointSale::searchOne([
  485. 'id_user' => $document->user->id
  486. ]);
  487. $productsArray = yii\helpers\ArrayHelper::map(
  488. $productsArray,
  489. 'order',
  490. function ($product) use ($document, $userProducer, $pointSale) {
  491. return array_merge($product->getAttributes(), [
  492. 'unit_coefficient' => Product::$unitsArray[$product->unit]['coefficient'],
  493. 'prices' => $product->getPriceArray($userProducer->user, $pointSale),
  494. 'wording_unit' => $product->wording_unit,
  495. 'tax_rate' => $product->taxRate->value
  496. ]);
  497. }
  498. );
  499. return [
  500. 'return' => 'success',
  501. 'tax_rate_producer' => GlobalParam::getCurrentProducer()->taxRate->value,
  502. 'document' => array_merge($document->getAttributes(), [
  503. 'html_label' => $document->getHtmlLabel(),
  504. 'class' => $document->getClass()
  505. ]),
  506. 'id_user' => $document->user->id,
  507. 'products' => $productsArray,
  508. 'orders' => $ordersArray,
  509. 'total' => ($document->getClass() == 'Invoice' || $document->getClass(
  510. ) == 'DeliveryNote') ? $document->getAmount(
  511. Order::INVOICE_AMOUNT_TOTAL
  512. ) : $document->getAmount(Order::AMOUNT_TOTAL),
  513. 'total_with_tax' => ($document->getClass() == 'Invoice' || $document->getClass(
  514. ) == 'DeliveryNote') ? $document->getAmountWithTax(
  515. Order::INVOICE_AMOUNT_TOTAL
  516. ) : $document->getAmountWithTax(Order::AMOUNT_TOTAL),
  517. 'invoice_url' => ($document->getClass() == 'DeliveryNote' && $document->getInvoice()) ? Yii::$app->urlManager->createUrl(['invoice/update', 'id' => $document->getInvoice()->id]) : null
  518. ];
  519. }
  520. }
  521. return ['return' => 'error'];
  522. }
  523. public function actionAjaxAddProduct($idDocument, $classDocument, $idProduct, $quantity, $price)
  524. {
  525. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  526. if (Document::isValidClass($classDocument)) {
  527. $document = $classDocument::searchOne([
  528. 'id' => $idDocument
  529. ]);
  530. $product = Product::searchOne([
  531. 'id' => $idProduct
  532. ]);
  533. if ($document && $product) {
  534. if (count($document->orders) == 0) {
  535. $order = new Order;
  536. $order->id_user = $document->id_user;
  537. $order->id_point_sale = null;
  538. $order->id_distribution = null;
  539. $order->status = 'tmp-order';
  540. $order->origin = Order::ORIGIN_ADMIN;
  541. $order->date = date('Y-m-d H:i:s');
  542. $fieldIdDocument = 'id_' . $classDocument::tableName();
  543. $order->$fieldIdDocument = $document->id;
  544. $order->save();
  545. } else {
  546. $order = $document->orders[0];
  547. }
  548. if ($order) {
  549. $productOrder = new ProductOrder;
  550. $productOrder->id_order = $order->id;
  551. $productOrder->id_product = $idProduct;
  552. $quantity = $quantity / Product::$unitsArray[$product->unit]['coefficient'];
  553. $productOrder->quantity = $quantity;
  554. $productOrder->price = (float)$price;
  555. $productOrder->unit = $product->unit;
  556. $productOrder->step = $product->step;
  557. $productOrder->id_tax_rate = $product->taxRate->id;
  558. $productOrder->save();
  559. return [
  560. 'return' => 'success',
  561. 'alert' => [
  562. 'type' => 'success',
  563. 'message' => 'Produit ajouté'
  564. ]
  565. ];
  566. }
  567. }
  568. }
  569. return [
  570. 'return' => 'error',
  571. 'alert' => [
  572. 'type' => 'danger',
  573. 'message' => 'Une erreur est survenue lors de la suppression du produit.'
  574. ]
  575. ];
  576. }
  577. public function actionAjaxDeleteProductOrder($idProductOrder)
  578. {
  579. \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
  580. $productOrder = ProductOrder::searchOne([
  581. 'id' => $idProductOrder
  582. ]);
  583. if ($productOrder) {
  584. $productOrder->delete();
  585. return [
  586. 'return' => 'success',
  587. 'alert' => [
  588. 'type' => 'danger',
  589. 'message' => 'Produit supprimé'
  590. ]
  591. ];
  592. }
  593. return [
  594. 'return' => 'error',
  595. 'alert' => [
  596. 'type' => 'danger',
  597. 'message' => 'Une erreur est survenue lors de la suppression du produit.'
  598. ]
  599. ];
  600. }
  601. public function getClass()
  602. {
  603. $class = get_class($this);
  604. $class = str_replace('Controller', '', $class);
  605. $class = str_replace('backend\controllers\\', '', $class);
  606. return $class;
  607. }
  608. public function getDocumentType()
  609. {
  610. $class = $this->getClass();
  611. if ($class == 'Invoice') {
  612. $documentType = 'Facture';
  613. } elseif ($class == 'DeliveryNote') {
  614. $documentType = 'Bon de livraison';
  615. } elseif ($class == 'Quotation') {
  616. $documentType = 'Devis';
  617. }
  618. if (isset($documentType)) {
  619. return $documentType;
  620. }
  621. return '';
  622. }
  623. public function getFlashMessage($type = 'create', $model)
  624. {
  625. $class = $this->getClass();
  626. $message = $this->getDocumentType();
  627. $message .= ' <strong>' . Html::encode($model->name) . '</strong> ';
  628. if ($type == 'create') {
  629. $message .= 'ajouté';
  630. } elseif ($type == 'update') {
  631. $message .= 'modifié';
  632. } elseif ($type == 'delete') {
  633. $message .= 'supprimé';
  634. } elseif ($type == 'validate') {
  635. $message .= 'validé';
  636. } elseif ($type == 'send') {
  637. $message .= 'envoyé';
  638. }
  639. if ($class == 'Invoice') {
  640. $message .= 'e';
  641. }
  642. return $message;
  643. }
  644. protected function getTitle($prepend)
  645. {
  646. $class = $this->getClass();
  647. switch ($class) {
  648. case 'Invoice' :
  649. $title = $prepend . ' une facture';
  650. break;
  651. case 'DeliveryNote' :
  652. $title = $prepend . ' un bon de livraison';
  653. break;
  654. case 'Quotation' :
  655. $title = $prepend . ' un devis';
  656. break;
  657. }
  658. return $title;
  659. }
  660. public function getControllerUrl()
  661. {
  662. $path = strtolower($this->getClass());
  663. $path = str_replace('deliverynote', 'delivery-note', $path);
  664. return $path;
  665. }
  666. /**
  667. * Recherche un Document en fonction de son ID.
  668. *
  669. * @param integer $id
  670. * @return Document
  671. * @throws NotFoundHttpException si le modèle n'est pas trouvé
  672. */
  673. protected function findModel($id)
  674. {
  675. $class = $this->getClass();
  676. $model = $class::searchOne([
  677. 'id' => $id
  678. ], [
  679. 'orderby' => 'teshtygjhtyt'
  680. ]);
  681. if ($model) {
  682. return $model;
  683. } else {
  684. throw new NotFoundHttpException('The requested page does not exist.');
  685. }
  686. }
  687. }