You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

386 lines
22KB

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