您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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. <?php
  66. $usersArray = User::findBy()->orderBy('type DESC, name_legal_person ASC, lastname ASC, name ASC')->all();
  67. ?>
  68. <?= $form->field($model, 'id_user', [
  69. '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}',
  70. ])
  71. ->dropDownList(
  72. ArrayHelper::map($usersArray, 'user_id', function ($model) {
  73. if (isset($model['name_legal_person']) && strlen($model['name_legal_person'])) {
  74. return 'Personne morale / ' . $model['name_legal_person'];
  75. } else {
  76. return $model['lastname'] . ' ' . $model['name'];
  77. }
  78. }),
  79. [
  80. '@change' => 'changeUser',
  81. 'prompt' => '--',
  82. 'v-model' => 'idUser',
  83. ]
  84. ); ?>
  85. <?php endif; ?>
  86. <?= $form->field($model, 'address')->textarea(['rows' => 2, 'v-model' => 'document.address']) ?>
  87. <?php if ($action == 'update'): ?>
  88. <?= $form->field($model, 'comment')->textarea(['rows' => 2])->hint('Affiché en bas de la facture') ?>
  89. <?php endif; ?>
  90. <?php if ($model->getClass() == 'Invoice'): ?>
  91. <template v-if="idUser > 0">
  92. <strong>Bons de livraison</strong>
  93. <table v-if="deliveryNotes && deliveryNotes.length > 0" class="table table-bordered">
  94. <thead>
  95. <tr>
  96. <?php if ($action == 'create'): ?>
  97. <th></th><?php endif; ?>
  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 deliveryNotes">
  105. <?php if ($action == 'create'): ?>
  106. <td><input type="checkbox" name="Invoice[deliveryNotes][]"
  107. :value="deliveryNote.id"/></td>
  108. <?php endif; ?>
  109. <td>{{ deliveryNote.name }}</td>
  110. <td>{{ formatPrice(deliveryNote.total) }}</td>
  111. </tr>
  112. </tbody>
  113. </table>
  114. <div v-else class="alert alert-warning">Aucun bon de livraison pour cet utilisateur.</div>
  115. </template>
  116. <?php endif; ?>
  117. <div class="form-group">
  118. <?= Html::submitButton($model->isNewRecord ? 'Ajouter' : 'Modifier', ['class' => 'btn btn-primary']) ?>
  119. </div>
  120. <?php ActiveForm::end(); ?>
  121. </div>
  122. </div>
  123. </div>
  124. <?php if ($action == 'update'): ?>
  125. <div class="col-md-6">
  126. <div id="" class="info-box">
  127. <span class="info-box-icon bg-green"><i class="fa fa-sticky-note-o"></i></span>
  128. <div class="info-box-content">
  129. <span class="info-box-text"><?= $typeDocument ?> <span v-html="document.html_label"></span></span>
  130. <span class="info-box-number">{{ document.reference }}</span>
  131. <span class="info-box-text">Date</span>
  132. <span class="info-box-number">{{ document.date }}</span>
  133. </div>
  134. </div>
  135. <div id="" class="info-box">
  136. <span class="info-box-icon bg-yellow"><i class="fa fa-euro"></i></span>
  137. <div class="info-box-content">
  138. <span class="info-box-text">Total<span v-if="taxRateProducer != 0"> (TTC)</span></span>
  139. <span class="info-box-number">{{ formatPrice(total_with_tax) }}</span>
  140. </div>
  141. </div>
  142. <div id="" class="info-box">
  143. <span class="info-box-icon bg-blue"><i class="fa fa-download"></i></span>
  144. <div class="info-box-content">
  145. <a href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/download', 'id' => $model->id]) ?>"
  146. class="btn btn-default"><span class="glyphicon glyphicon-download-alt"></span> Télécharger (PDF)</a>
  147. <?php if ($model->getClass() == 'Invoice' && Producer::getConfig('option_export_evoliz')): ?>
  148. <a href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/export-csv-evoliz', 'id' => $model->id]) ?>"
  149. class="btn btn-default"><span class="glyphicon glyphicon-save-file"></span> Export Evoliz
  150. (CSV)</a>
  151. <?php endif; ?>
  152. </div>
  153. </div>
  154. <div v-if="document.status == 'draft'" id="" class="info-box">
  155. <span class="info-box-icon bg-red"><i class="fa fa-flash"></i></span>
  156. <div class="info-box-content">
  157. <form action="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/validate']) ?>">
  158. <?= Html::hiddenInput('id', $model->id); ?>
  159. <button class="btn btn-default"><span class="glyphicon glyphicon-ok"></span> Valider le document
  160. </button>
  161. </form>
  162. <?php if (isset($model->user) && strlen($model->user->email) > 0): ?>
  163. <a href="<?= Yii::$app->urlManager->createUrl([Yii::$app->controller->getControllerUrl() . '/send', 'id' => $model->id]) ?>"
  164. class="btn btn-default"><span class="glyphicon glyphicon-send"></span> Envoyer le
  165. document</a>
  166. <?php endif; ?>
  167. </div>
  168. </div>
  169. </div>
  170. <div class="clr"></div>
  171. <div class="">
  172. <div class="panel panel-default" id="block-add-product">
  173. <div class="panel-heading">
  174. Ajouter un produit
  175. </div>
  176. <div class="panel-body">
  177. <div class="col-md-6">
  178. <strong>Produit</strong>
  179. <select class="form-control" v-model="productAddId"
  180. @change="changeProductAdd">
  181. <option value="0" selected="selected">--</option>
  182. <option v-for="product in productsArray" :value="product.id">
  183. {{ product.name }}
  184. </option>
  185. </select>
  186. </div>
  187. <template v-if="productAddId > 0">
  188. <div class="col-md-3">
  189. <strong>Prix unitaire</strong>
  190. <div class="input-group">
  191. <input type="text" class="form-control input-price"
  192. v-model="productAddPrice" @change="formatProductAddPrice"/>
  193. <span class="input-group-addon"><span
  194. class="glyphicon glyphicon-euro"></span> <span v-if="taxRateProducer != 0">HT</span></span>
  195. </div>
  196. </div>
  197. <div class="col-md-3 total">
  198. <strong>Quantité</strong>
  199. <div class="input-group input-group-quantity">
  200. <span class="input-group-btn">
  201. <button class="btn btn-default" type="button"
  202. @click="changeQuantityProductAdd(-1)">-</button>
  203. </span>
  204. <input type="text" class="form-control input-quantity"
  205. v-model="productAddQuantity" @change="formatProductAddQuantity"/>
  206. <span class="input-group-addon">{{ getProductById(productAddId).wording_unit }}</span>
  207. <span class="input-group-btn">
  208. <button class="btn btn-default"
  209. type="button"
  210. @click="changeQuantityProductAdd(1)">+</button>
  211. </span>
  212. </div>
  213. <button class="btn btn-primary" value="Ajouter"
  214. @click="submitProductAdd">Ajouter
  215. </button>
  216. <div class="clr"></div>
  217. </div>
  218. <!--<div class="col-md-3 total">
  219. <strong>Total</strong>
  220. <div class="input-group">
  221. <input type="text" class="form-control input-price" readonly
  222. :value="formatPrice(productAddPrice * productAddQuantity)"/>
  223. <span class="input-group-addon"><span
  224. class="glyphicon glyphicon-euro"></span> <span v-if="taxRateProducer != 0">HT</span></span>
  225. </div>
  226. </div>-->
  227. </template>
  228. <div class="clr"></div>
  229. </div>
  230. </div>
  231. <div class="panel panel-default">
  232. <div class="panel-heading">
  233. Produits
  234. </div>
  235. <div class="panel-body">
  236. <div id="block-list-products">
  237. <table class="table table-bordered" v-if="total > 0">
  238. <thead>
  239. <tr>
  240. <th>Nom</th>
  241. <th>Prix (unité)</th>
  242. <th>Quantité</th>
  243. <th v-if="taxRateProducer != 0">TVA</th>
  244. <th v-if="taxRateProducer != 0">Total HT</th>
  245. <th v-else>Total</th>
  246. <th>Supprimer</th>
  247. </tr>
  248. </thead>
  249. <tbody>
  250. <template v-for="order in ordersArray">
  251. <tr v-for="productOrder in order.productOrder">
  252. <td class="col-md-4">
  253. <div class="product-name">{{ getProductById(productOrder.id_product).name }}
  254. </div>
  255. <ul class="product-order-meta">
  256. <li>{{ order.username }}</li>
  257. <li v-if="order.distribution_date">{{ order.distribution_date }}</li>
  258. <li v-if="order.point_sale_name">{{ order.point_sale_name }}</li>
  259. </ul>
  260. </td>
  261. <td class="col-md-2">
  262. {{ formatPrice(getProductOrderPrice(productOrder)) }}
  263. <template v-if="document.status == 'draft' && getProductOrderPrice(productOrder) != getBestProductPrice(productOrder.id_product, productOrder.quantity)">
  264. <i class="fa fa-exclamation-triangle" title="Prix différent de celui défini au niveau du produit"></i>
  265. </template>
  266. </td>
  267. <td class="col-md-2">{{ productOrder.quantity }}</td>
  268. <td class="col-md-1" v-if="taxRateProducer != 0">
  269. {{ getProductById(productOrder.id_product).tax_rate * 100 }} %
  270. </td>
  271. <td class="col-md-2">
  272. {{ formatPrice(productOrder.quantity * getProductOrderPrice(productOrder)) }}
  273. </td>
  274. <td class="col-md-1">
  275. <a class="btn btn-default" @click="deleteProductOrder(productOrder.id)">
  276. <span class="glyphicon glyphicon-trash"></span>
  277. </a>
  278. </td>
  279. </tr>
  280. </template>
  281. <template v-if="taxRateProducer != 0">
  282. <tr>
  283. <td colspan="4"><strong>Total HT</strong></td>
  284. <td><strong>{{ formatPrice(total) }} HT</strong></td>
  285. <td></td>
  286. </tr>
  287. <tr>
  288. <td colspan="4"><strong>Montant TVA</strong></td>
  289. <td><strong>{{ formatPrice(total_with_tax - total) }}</strong></td>
  290. <td></td>
  291. </tr>
  292. <tr>
  293. <td colspan="4"><strong>Total TTC</strong></td>
  294. <td><strong>{{ formatPrice(total_with_tax) }} TTC</strong></td>
  295. <td></td>
  296. </tr>
  297. </template>
  298. <template v-else>
  299. <tr>
  300. <td colspan="3"><strong>Total</strong></td>
  301. <td><strong>{{ formatPrice(total) }}</strong></td>
  302. <td></td>
  303. </tr>
  304. </template>
  305. </tbody>
  306. </table>
  307. <div v-else class="alert alert-info">
  308. Aucun produit.
  309. </div>
  310. </div>
  311. </div>
  312. </div>
  313. </div>
  314. <?php endif; ?>
  315. </div>