forked from Mapan/odoo17e
19 lines
375 B
JavaScript
19 lines
375 B
JavaScript
/** @odoo-module */
|
|
|
|
export function send_payment_request() {
|
|
return [
|
|
{
|
|
content: "click send button",
|
|
trigger: ".button.send_payment_request",
|
|
},
|
|
]
|
|
}
|
|
export function send_payment_cancel() {
|
|
return [
|
|
{
|
|
content: "click send button",
|
|
trigger: ".button.send_payment_cancel",
|
|
},
|
|
]
|
|
}
|