diff options
Diffstat (limited to 'addons/pos_mercury/static/src/xml/PaymentTransactionPopup.xml')
| -rw-r--r-- | addons/pos_mercury/static/src/xml/PaymentTransactionPopup.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/addons/pos_mercury/static/src/xml/PaymentTransactionPopup.xml b/addons/pos_mercury/static/src/xml/PaymentTransactionPopup.xml new file mode 100644 index 00000000..39c05a8f --- /dev/null +++ b/addons/pos_mercury/static/src/xml/PaymentTransactionPopup.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<templates id="template" xml:space="preserve"> + + <t t-name="PaymentTransactionPopup" owl="1"> + <div role="dialog" class="modal-dialog"> + <div class="popup"> + <p class="title"> + <t t-esc="props.title"></t> + </p> + <p class="body"> + <t t-esc="state.message"></t> + </p> + <div t-if="state.confirmButtonIsShown" class="footer"> + <div class="button cancel" t-on-click="confirm"> + <t t-esc="props.confirmText"></t> + </div> + </div> + </div> + </div> + </t> + +</templates> |
