Browse Source

[Backend] Documents > Factures : correctif formulaire création #755

refactoring
Guillaume Bourgeois 1 year ago
parent
commit
c969f3a25e
2 changed files with 10 additions and 2 deletions
  1. +1
    -1
      backend/views/document/_form.php
  2. +9
    -1
      backend/web/js/vuejs/document-form.js

+ 1
- 1
backend/views/document/_form.php View File

[ [
'@change' => 'changeUser', '@change' => 'changeUser',
'v-model' => 'idUser', 'v-model' => 'idUser',
'class' => 'select2'
'class' => 'select2 select2-document-form'
] ]
); ?> ); ?>
<?php endif; ?> <?php endif; ?>

+ 9
- 1
backend/web/js/vuejs/document-form.js View File

methods: { methods: {
formatPrice: formatPrice, formatPrice: formatPrice,
init: function () { init: function () {
var app = this;


if (this.getDocumentId()) { if (this.getDocumentId()) {
var app = this;
axios.get(UrlManager.getBaseUrlAbsolute() + "document/ajax-init", { axios.get(UrlManager.getBaseUrlAbsolute() + "document/ajax-init", {
params: { params: {
idDocument: this.getDocumentId(), idDocument: this.getDocumentId(),
} }
}); });
} }
else {
$('.select2-document-form').on('select2:select', function (e) {
var idUser = e.params.data.id;
app.idUser = idUser;
app.changeUser();
});
}
}, },
getProductById: function(idProduct) { getProductById: function(idProduct) {
var app = this; var app = this;

Loading…
Cancel
Save