소스 검색

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

refactoring
Guillaume Bourgeois 1 년 전
부모
커밋
c969f3a25e
2개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  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 파일 보기

@@ -77,7 +77,7 @@ use common\models\Producer;
[
'@change' => 'changeUser',
'v-model' => 'idUser',
'class' => 'select2'
'class' => 'select2 select2-document-form'
]
); ?>
<?php endif; ?>

+ 9
- 1
backend/web/js/vuejs/document-form.js 파일 보기

@@ -60,9 +60,10 @@ var app = new Vue({
methods: {
formatPrice: formatPrice,
init: function () {
var app = this;

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

Loading…
취소
저장