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.

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