Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

444 lines
23KB

  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. use common\helpers\MeanPayment;use common\helpers\Price;
  38. use common\logic\Document\Document\Module\DocumentModule;
  39. use common\logic\Document\Invoice\Module\InvoiceModule;
  40. use common\logic\Payment\Module\PaymentModule;
  41. use common\logic\Producer\Producer\Module\ProducerModule;
  42. use common\logic\User\User\Module\UserModule;
  43. use yii\helpers\Html;
  44. use yii\widgets\ActiveForm;
  45. \backend\assets\VuejsDocumentFormAsset::register($this);
  46. $producerModule = ProducerModule::getInstance();
  47. $documentModule = DocumentModule::getInstance();
  48. $invoiceModule = InvoiceModule::getInstance();
  49. $userModule = UserModule::getInstance();
  50. $paymentManager = PaymentModule::getInstance();
  51. $documentClass = $documentModule->getClass($model);
  52. ?>
  53. <div class="document-form" id="app-document-form" data-class-document="<?= $documentClass ?>"
  54. data-id-document="<?= ($model->id > 0) ? $model->id : $model->id ?>">
  55. <div class="<?= ($action == 'update') ? 'col-md-6' : '' ?>">
  56. <div class="panel panel-default">
  57. <div class="panel-heading">
  58. Général
  59. </div>
  60. <div class="panel-body">
  61. <?php $form = ActiveForm::begin(); ?>
  62. <?= Html::hiddenInput('classDocument', $documentClass, ['id' => 'class-document']) ?>
  63. <?= Html::hiddenInput('typeAction', $action, ['id' => 'type-action']) ?>
  64. <?php if ($action == 'update'): ?>
  65. <?= Html::hiddenInput('idDocument', $model->id, ['id' => 'id-document']) ?>
  66. <?php endif; ?>
  67. <?= $form->field($model, 'name')->label('Nom du document') ?>
  68. <?php if ($action == 'update'): ?>
  69. <?= $form->field($model, 'id_user', [
  70. 'template' => '{label} <div>{input}</div>' . $userModule->getUsername($model->user),
  71. ])->hiddenInput(); ?>
  72. <?php else: ?>
  73. <?= $form->field($model, 'id_user', [
  74. 'template' => '{label} <a href="' . Yii::$app->urlManager->createUrl(['user/create']) . '" class="btn btn-xs btn-default">Nouvel utilisateur <span class="glyphicon glyphicon-plus"></span></a><div>{input}</div>{hint}',
  75. ])
  76. ->dropDownList(
  77. $userModule->populateUserDropdownList(),
  78. [
  79. '@change' => 'changeUser',
  80. 'v-model' => 'idUser',
  81. 'class' => 'select2 select2-document-form'
  82. ]
  83. ); ?>
  84. <?php endif; ?>
  85. <?= $form->field($model, 'address')->textarea(['rows' => 2, 'v-model' => 'document.address']) ?>
  86. <?php if ($action == 'update'): ?>
  87. <?= $form->field($model, 'comment')->textarea(['rows' => 2])->hint('Affiché en bas du document') ?>
  88. <?php endif; ?>
  89. <?php if ($action == 'create' && $documentClass == 'Invoice'): ?>
  90. <template v-if="idUser > 0">
  91. <template v-if="deliveryNoteCreateArray && deliveryNoteCreateArray.length > 0">
  92. <strong>Bons de livraison</strong>
  93. <table v-if="deliveryNoteCreateArray && deliveryNoteCreateArray.length > 0"
  94. class="table table-bordered">
  95. <thead>
  96. <tr>
  97. <th></th>
  98. <th>Libellé</th>
  99. <th v-if="taxRateProducer != 0">Montant (TTC)</th>
  100. <th v-else>Montant</th>
  101. </tr>
  102. </thead>
  103. <tbody>
  104. <tr v-for="deliveryNote in deliveryNoteCreateArray">
  105. <td><input type="checkbox" name="Invoice[deliveryNotes][]"
  106. :value="deliveryNote.id"/></td>
  107. <td>{{ deliveryNote.name }}</td>
  108. <td>{{ formatPrice(deliveryNote.total) }}</td>
  109. </tr>
  110. </tbody>
  111. </table>
  112. <div v-else class="alert alert-warning">Aucun bon de livraison pour cet utilisateur.</div>
  113. </template>
  114. <template v-else-if="ordersCreateArray && ordersCreateArray.length > 0">
  115. <strong>Commandes</strong>
  116. <table v-if="ordersCreateArray && ordersCreateArray.length > 0"
  117. class="table table-bordered">
  118. <thead>
  119. <tr>
  120. <th></th>
  121. <th>Date</th>
  122. <th v-if="taxRateProducer != 0">Montant (TTC)</th>
  123. <th v-else>Montant</th>
  124. </tr>
  125. </thead>
  126. <tbody>
  127. <tr v-for="order in ordersCreateArray">
  128. <td><input type="checkbox" name="Invoice[ordersOnCreate][]" :value="order.id"/></td>
  129. <td>{{ order.name }}</td>
  130. <td>{{ formatPrice(order.amount_with_tax) }}</td>
  131. </tr>
  132. </tbody>
  133. </table>
  134. <div v-else class="alert alert-warning">Aucune commande pour cet utilisateur.</div>
  135. </template>
  136. </template>
  137. <?php endif; ?>
  138. <div class="form-group">
  139. <?= Html::submitButton($model->isNewRecord ? 'Ajouter' : 'Modifier', ['class' => 'btn btn-primary']) ?>
  140. </div>
  141. <?php ActiveForm::end(); ?>
  142. </div>
  143. </div>
  144. </div>
  145. <?php if ($action == 'update'): ?>
  146. <div class="col-md-6">
  147. <div id="" class="info-box">
  148. <span class="info-box-icon bg-green"><i class="fa fa-sticky-note-o"></i></span>
  149. <div class="info-box-content">
  150. <span class="info-box-text">
  151. <?= $typeDocument ?>
  152. <span v-html="document.html_label"></span>
  153. <span v-if="document.is_sent" class="label label-success">Envoyé</span>
  154. </span>
  155. <span class="info-box-number">{{ document.reference }}</span>
  156. <span class="info-box-text">Date</span>
  157. <span class="info-box-number">{{ document.date }}</span>
  158. </div>
  159. </div>
  160. <div id="" class="info-box">
  161. <span class="info-box-icon bg-yellow"><i class="fa fa-euro"></i></span>
  162. <div class="info-box-content">
  163. <span class="info-box-text">
  164. Total<span v-if="taxRateProducer != 0"> (TTC)</span>
  165. <?php if( $invoiceModule->isDocumentInvoice($model) && $invoiceModule->isInvoicePaid($model)): ?>
  166. <span class="label label-success">PAYÉE</span>
  167. <?php endif; ?>
  168. </span>
  169. <span class="info-box-number">{{ formatPrice(total_with_tax) }}</span>
  170. <p v-if="invoiceUrl">
  171. <a class="btn btn-sm btn-default" :href="invoiceUrl">
  172. <span class="glyphicon glyphicon-eye-open"></span> Voir la facture
  173. </a>
  174. </p>
  175. </div>
  176. </div>
  177. <div id="" class="info-box">
  178. <span class="info-box-icon bg-yellow"><i class="fa fa-calendar"></i></span>
  179. <div class="info-box-content">
  180. <span class="info-box-text">Commandes</span>
  181. <?php foreach ($model->orders as $order): ?>
  182. <?php if ($order->distribution): ?>
  183. <a class="btn btn-sm btn-default"
  184. href="<?= Yii::$app->urlManager->createUrl(['distribution/index', 'idOrderUpdate' => $order->id]); ?>">
  185. <?= date('d/m/Y', strtotime($order->distribution->date)) ?>
  186. </a>
  187. <?php endif; ?>
  188. <?php endforeach; ?>
  189. </div>
  190. </div>
  191. <div id="" class="info-box">
  192. <span class="info-box-icon bg-blue"><i class="fa fa-download"></i></span>
  193. <div class="info-box-content">
  194. <a href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/download', 'id' => $model->id]) ?>"
  195. class="btn btn-sm btn-default"><span class="glyphicon glyphicon-download-alt"></span> Télécharger
  196. (PDF)</a>
  197. <?php if ($documentModule->isStatusValid($model)): ?>
  198. <a href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/regenerate', 'id' => $model->id]) ?>"
  199. class="btn btn-sm btn-default"><span class="glyphicon glyphicon-repeat"></span> Regénérer
  200. (PDF)</a>
  201. <?php endif; ?>
  202. <?php if ($documentClass == 'Invoice' && $producerModule->getConfig('option_export_evoliz')): ?>
  203. <a href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/export-csv-evoliz', 'id' => $model->id]) ?>"
  204. class="btn btn-sm btn-default"><span class="glyphicon glyphicon-save-file"></span> Export Evoliz
  205. (CSV)</a>
  206. <?php endif; ?>
  207. </div>
  208. </div>
  209. <div v-if="document.status == 'draft' || !document.is_sent" class="info-box">
  210. <span class="info-box-icon bg-red"><i class="fa fa-flash"></i></span>
  211. <div class="info-box-content">
  212. <a v-if="document.status == 'draft'"
  213. href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/validate', 'id' => $model->id, 'backUpdateForm' => 1]) ?>"
  214. class="btn btn-sm btn-default"><span class="glyphicon glyphicon-ok"></span> Valider le document</a>
  215. <?php if (isset($model->user) && strlen($model->user->email) > 0): ?>
  216. <a v-if="!document.is_sent"
  217. href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/send', 'id' => $model->id, 'backUpdateForm' => 1]) ?>"
  218. class="btn btn-sm btn-default"><span class="glyphicon glyphicon-send"></span> Envoyer le
  219. document</a>
  220. <?php endif; ?>
  221. </div>
  222. </div>
  223. </div>
  224. <div class="clr"></div>
  225. <?php if ($action == 'update' && $documentClass == 'DeliveryNote'): ?>
  226. <?= $this->render('form/_orders'); ?>
  227. <?php endif; ?>
  228. <?php if ($action == 'update' && $documentClass == 'Invoice'): ?>
  229. <?= $this->render('form/_payment', ['model' => $model, 'payment' => $payment]); ?>
  230. <div v-if="(deliveryNoteUpdateArray && deliveryNoteUpdateArray.length > 0) || (deliveryNoteCreateArray && deliveryNoteCreateArray.length > 0)">
  231. <div class="panel panel-default">
  232. <div class="panel-heading">
  233. Bons de livraison
  234. </div>
  235. <div class="panel-body">
  236. <table v-if="deliveryNoteUpdateArray && deliveryNoteUpdateArray.length > 0"
  237. class="table table-bordered">
  238. <thead>
  239. <tr>
  240. <th>Libellé</th>
  241. <th v-if="taxRateProducer != 0">Montant (TTC)</th>
  242. <th v-else>Montant</th>
  243. <th v-if="document.status == 'draft'"></th>
  244. </tr>
  245. </thead>
  246. <tbody>
  247. <tr v-for="deliveryNote in deliveryNoteUpdateArray">
  248. <td><a :href="deliveryNote.url">{{ deliveryNote.name }}</a></td>
  249. <td>{{ formatPrice(deliveryNote.total) }}</td>
  250. <td v-if="document.status == 'draft'"><a class="btn btn-default" href="javascript:void(0);"
  251. @click="deleteDeliveryNoteFromInvoice"
  252. :data-id="deliveryNote.id"><span
  253. class="glyphicon glyphicon-trash"></span></a></td>
  254. </tr>
  255. </tbody>
  256. </table>
  257. <div v-else class="alert alert-warning">Aucun bon de livraison associé.</div>
  258. <div v-if="document.status == 'draft'" id="delivery-note-add">
  259. <div class="col-md-8">
  260. <select class="form-control" v-model="deliveryNoteAddId">
  261. <option value="0" selected="selected">--</option>
  262. <option v-for="deliveryNote in deliveryNoteCreateArray" :value="deliveryNote.id">
  263. {{ deliveryNote.name }}
  264. </option>
  265. </select>
  266. </div>
  267. <div class="col-md-4">
  268. <button class="btn btn-primary" value="Ajouter" @click="submitDeliveryNoteAddToInvoice">
  269. Ajouter
  270. </button>
  271. </div>
  272. </div>
  273. </div>
  274. </div>
  275. </div>
  276. <div v-else>
  277. <?= $this->render('form/_orders'); ?>
  278. </div>
  279. <div class="clr"></div>
  280. <?php endif; ?>
  281. <div class="panel panel-default" id="block-add-product">
  282. <div class="panel-heading">
  283. Ajouter un produit
  284. </div>
  285. <div class="panel-body">
  286. <div class="col-md-6">
  287. <strong>Produit</strong>
  288. <select class="form-control" v-model="productAddId"
  289. @change="changeProductAdd">
  290. <option value="0" selected="selected">--</option>
  291. <option v-for="product in productsArray" v-if="product.status >= 0" :value="product.id">
  292. {{ product.name }}
  293. </option>
  294. </select>
  295. </div>
  296. <template v-if="productAddId > 0">
  297. <div class="col-md-3">
  298. <strong>Prix unitaire</strong>
  299. <div class="input-group">
  300. <input type="text" class="form-control input-price"
  301. v-model="productAddPrice" @change="formatProductAddPrice"/>
  302. <span class="input-group-addon"><span
  303. class="glyphicon glyphicon-euro"></span> <span v-if="taxRateProducer != 0">HT</span></span>
  304. </div>
  305. </div>
  306. <div class="col-md-3 total">
  307. <strong>Quantité</strong>
  308. <div class="input-group input-group-quantity">
  309. <span class="input-group-btn">
  310. <button class="btn btn-default" type="button"
  311. @click="changeQuantityProductAdd(-1)">-</button>
  312. </span>
  313. <input type="text" class="form-control input-quantity"
  314. v-model="productAddQuantity" @change="formatProductAddQuantity"/>
  315. <span class="input-group-addon">{{ getProductById(productAddId).wording_unit }}</span>
  316. <span class="input-group-btn">
  317. <button class="btn btn-default"
  318. type="button"
  319. @click="changeQuantityProductAdd(1)">+</button>
  320. </span>
  321. </div>
  322. <button class="btn btn-primary" value="Ajouter"
  323. @click="submitProductAdd">Ajouter
  324. </button>
  325. <div class="clr"></div>
  326. </div>
  327. </template>
  328. <div class="clr"></div>
  329. </div>
  330. </div>
  331. <div class="panel panel-default">
  332. <div class="panel-heading">
  333. Produits
  334. </div>
  335. <div class="panel-body">
  336. <div id="block-list-products">
  337. <table class="table table-bordered" v-if="Object.keys(ordersArray).length > 0">
  338. <thead>
  339. <tr>
  340. <th>Nom</th>
  341. <th>Prix (unité)</th>
  342. <th>Quantité</th>
  343. <th v-if="taxRateProducer != 0">TVA</th>
  344. <th v-if="taxRateProducer != 0">Total HT</th>
  345. <th v-else>Total</th>
  346. <th>Supprimer</th>
  347. </tr>
  348. </thead>
  349. <tbody>
  350. <template v-for="order in ordersArray">
  351. <tr v-for="productOrder in order.productOrder">
  352. <td class="col-md-4">
  353. <div class="product-name">{{ getProductById(productOrder.id_product).name }}
  354. </div>
  355. <ul class="product-order-meta">
  356. <li v-if="order.distribution_date">Commande : <a class="btn btn-sm btn-default"
  357. :href="productOrder.url_order">{{
  358. order.distribution_date }}</a></li>
  359. <li>Utilisateur : {{ order.username }}</li>
  360. <li v-if="order.point_sale_name">Point de vente : {{ order.point_sale_name }}</li>
  361. </ul>
  362. </td>
  363. <td class="col-md-2">
  364. {{ formatPrice(getProductOrderPrice(productOrder)) }}
  365. <template
  366. v-if="document.status == 'draft' && getProductOrderPrice(productOrder) != getBestProductPrice(productOrder.id_product, productOrder.quantity)">
  367. <i class="fa fa-exclamation-triangle"
  368. title="Prix différent de celui défini au niveau du produit"></i>
  369. </template>
  370. </td>
  371. <td class="col-md-2">{{ productOrder.quantity }}</td>
  372. <td class="col-md-1" v-if="taxRateProducer != 0">
  373. {{ getProductById(productOrder.id_product).tax_rate * 100 }} %
  374. </td>
  375. <td class="col-md-2">
  376. {{ formatPrice(productOrder.quantity * getProductOrderPrice(productOrder)) }}
  377. </td>
  378. <td class="col-md-1">
  379. <a class="btn btn-default" @click="deleteProductOrder(productOrder.id)">
  380. <span class="glyphicon glyphicon-trash"></span>
  381. </a>
  382. </td>
  383. </tr>
  384. </template>
  385. <template v-if="taxRateProducer != 0">
  386. <tr>
  387. <td colspan="4"><strong>Total HT</strong></td>
  388. <td><strong>{{ formatPrice(total) }} HT</strong></td>
  389. <td></td>
  390. </tr>
  391. <tr>
  392. <td colspan="4"><strong>Montant TVA</strong></td>
  393. <td><strong>{{ formatPrice(total_with_tax - total) }}</strong></td>
  394. <td></td>
  395. </tr>
  396. <tr>
  397. <td colspan="4"><strong>Total TTC</strong></td>
  398. <td><strong>{{ formatPrice(total_with_tax) }} TTC</strong></td>
  399. <td></td>
  400. </tr>
  401. </template>
  402. <template v-else>
  403. <tr>
  404. <td colspan="3"><strong>Total</strong></td>
  405. <td><strong>{{ formatPrice(total) }}</strong></td>
  406. <td></td>
  407. </tr>
  408. </template>
  409. </tbody>
  410. </table>
  411. <div v-else class="alert alert-info">
  412. Aucun produit.
  413. </div>
  414. </div>
  415. </div>
  416. </div>
  417. <?php endif; ?>