diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/account/static/src/xml/account_payment.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account/static/src/xml/account_payment.xml')
| -rw-r--r-- | addons/account/static/src/xml/account_payment.xml | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/addons/account/static/src/xml/account_payment.xml b/addons/account/static/src/xml/account_payment.xml new file mode 100644 index 00000000..c752f838 --- /dev/null +++ b/addons/account/static/src/xml/account_payment.xml @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<templates xml:space="preserve"> + + <t t-name="ShowPaymentInfo"> + <div> + <t t-if="outstanding"> + <div> + <strong class="float-left" id="outstanding"><t t-esc="title"></t></strong> + </div> + </t> + <table style="width:100%;"> + <t t-foreach="lines" t-as="line"> + <tr> + <t t-if="outstanding"> + <td> + <a title="assign to invoice" role="button" class="oe_form_field btn btn-link outstanding_credit_assign" t-att-data-id="line.id" style="margin-right: 10px;" href="#" data-toggle="tooltip">Add</a> + </td> + <td style="max-width: 30em;"> + <div class="oe_form_field" style="margin-right: 30px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;" t-att-title="line.date" data-toggle="tooltip"><t t-esc="line.journal_name"></t></div> + </td> + </t> + <t t-if="!outstanding"> + <td> + <a role="button" tabindex="0" class="js_payment_info fa fa-info-circle" t-att-index="line.index" style="margin-right:5px;" aria-label="Info" title="Payment Info" data-toggle="tooltip"></a> + </td> + <td> + <i class="o_field_widget text-right o_payment_label">Paid on <t t-esc="line.date"></t></i> + </td> + </t> + <td style="text-align:right;"> + <span class="oe_form_field oe_form_field_float oe_form_field_monetary" style="margin-left: -10px;"> + <t t-if="line.position === 'before'"> + <t t-esc="line.currency"/> + </t> + <t t-esc="line.amount"></t> + <t t-if="line.position === 'after'"> + <t t-esc="line.currency"/> + </t> + </span> + </td> + </tr> + </t> + </table> + </div> + </t> + + <t t-name="PaymentPopOver"> + <div> + <table> + <tr> + <td><strong>Amount: </strong></td> + <td> + <t t-if="position === 'before'"> + <t t-esc="currency"/> + </t> + <t t-esc="amount"></t> + <t t-if="position === 'after'"> + <t t-esc="currency"/> + </t> + </td> + </tr> + <tr> + <td><strong>Memo: </strong></td> + <td> + <div style="width: 200px; word-wrap: break-word"> + <t t-esc="ref"/> + </div> + </td> + </tr> + <tr> + <td><strong>Date: </strong></td> + <td><t t-esc="date"/></td> + </tr> + <tr> + <td><strong>Payment Journal: </strong></td> + <td><t t-esc="journal_name"/><span t-if="payment_method_name"> (<t t-esc="payment_method_name"/>)</span></td> + </tr> + </table> + </div> + <button class="btn btn-sm btn-primary js_unreconcile_payment float-left" t-att-partial-id="partial_id" t-att-payment-id="payment_id" t-att-move-id="move_id" style="margin-top:5px; margin-bottom:5px;" groups="account.group_account_invoice">Unreconcile</button> + <button class="btn btn-sm btn-secondary js_open_payment float-right" t-att-payment-id="account_payment_id" t-att-move-id="move_id" style="margin-top:5px; margin-bottom:5px;">View</button> + </t> + +</templates> |
