Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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