Fix /payer
This commit is contained in:
parent
5de4dd016f
commit
67bb14795c
@ -539,7 +539,10 @@ export class RdDUtility {
|
|||||||
// Gestion du bouton payer
|
// Gestion du bouton payer
|
||||||
html.on("click", '#payer-button', event => {
|
html.on("click", '#payer-button', event => {
|
||||||
let sumdenier = event.currentTarget.attributes['data-somme-denier'].value;
|
let sumdenier = event.currentTarget.attributes['data-somme-denier'].value;
|
||||||
let quantite = event.currentTarget.attributes['data-quantite'].value;
|
let quantite = 1;
|
||||||
|
if ( event.currentTarget.attributes['data-quantite'] ) {
|
||||||
|
quantite = event.currentTarget.attributes['data-quantite'].value;
|
||||||
|
}
|
||||||
let jsondata = event.currentTarget.attributes['data-jsondata']
|
let jsondata = event.currentTarget.attributes['data-jsondata']
|
||||||
let objData
|
let objData
|
||||||
if (jsondata) {
|
if (jsondata) {
|
||||||
|
Loading…
Reference in New Issue
Block a user