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.

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