diff --git a/gestion/gest_crans.py b/gestion/gest_crans.py index 42d90236..c8359d90 100755 --- a/gestion/gest_crans.py +++ b/gestion/gest_crans.py @@ -1171,6 +1171,7 @@ def set_vente(proprio): menu.append(u'"Spc" "Espèces" ') menu.append(u'"Chq" "Chèque" ') menu.append(u'"Cb" "Carte bancaire" ') + menu.append(u'"Note" "Note Kfet (attention, moins traçable)" ') if isimprimeur and proprio.solde() - f.total() > 0: menu.append(u'"Sol" "Solde Crans (actuel : %s€)" ' % (proprio.solde())) @@ -1197,6 +1198,10 @@ def set_vente(proprio): f.modePaiement('cheque') paiement = u"Chèque" annul, comment = dialog(arg) + elif result[0] == "Note": + f.modePaiement('note') + paiement = u"Note" + annul, comment = dialog(arg) elif result[0] == "Sol" and isimprimeur: f.modePaiement('solde') paiement = u"Solde Crans"