Initial commit: OCA Technical packages (595 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:03 +02:00
commit 2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions

View file

@ -0,0 +1,136 @@
/* Copyright 2021 Tecnativa - David Vidal
License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). */
odoo.define("rma_sale.animation", function (require) {
"use strict";
const publicWidget = require("web.public.widget");
/**
* Adds some machinery to the customer portal RMA form:
*
* - Avoid submitting the form if no qty or operation is reported.
* - Show automatically the observations field when the operation is selected
* and hide it back with no operation selected.
*/
publicWidget.registry.PortalRmaSale = publicWidget.Widget.extend({
selector: "#form-request-rma",
events: {
"change .rma-operation": "_onChangeOperationId",
"change #delivery-rma-qty input": "_onChangeQty",
"click .o_rma_portal_shipping_card": "_onChangeShippingAddress",
},
/**
* @override
*/
start: function () {
const ids = this.$("[name*='-operation_id']")
.map(function () {
return this.name.replace("-operation_id", "");
})
.get();
this.$submit = $("#form-request-rma button[type='submit']");
this.rows_ids = ids;
// We'll build an object that will ease the form check. It could be further
// extended with additional checks.
this.rows = {};
_.each(ids, (id) => {
this.rows[id] = {
$comment: this.$(`#comment-${id}`),
$comment_input: this.$(`[name='${id}-description']`),
$operation: this.$(`[name='${id}-operation_id']`),
$qty: this.$(`[name='${id}-quantity']`),
};
});
this._checkCanSubmit();
},
/**
* @private
* @param {Object} row: the form row structure
*/
_show_comment: function (row) {
if (row.$comment) {
row.$comment.addClass("show");
if (row.$comment_input) {
row.$comment_input.focus();
}
}
},
/**
* @private
* @param {Object} row: the form row structure
*/
_hide_comment: function (row) {
if (row.$comment) {
row.$comment.removeClass("show");
}
},
/**
* We should be able to submit only when an operation is selected and a
* quantity entered in a row at least.
* @private
*/
_canSubmit: function () {
var can_submit = false;
for (const id of this.rows_ids) {
const row = this.rows[id];
if (
row &&
// Qty greater than 0
row.$qty &&
row.$qty.val() &&
Number(row.$qty.val()) &&
// An operation is defined
row.$operation &&
row.$operation.val()
) {
can_submit = true;
break;
}
}
return can_submit;
},
/**
* Checked every time we change the quantity or the operation and at start
*
* @private
* @param {Object} row: the form row structure
*/
_checkCanSubmit: function () {
this.$submit.prop("disabled", !this._canSubmit());
},
/**
* @private
* @param {InputEvent} ev
*/
_onChangeOperationId: function (ev) {
// Toggle comment on or off if an operation is requested
const id = ev.currentTarget.name.replace("-operation_id", "");
var row = this.rows[id];
if (row && row.$operation && row.$operation.val()) {
this._show_comment(row);
} else {
this._hide_comment(row);
}
this._checkCanSubmit();
},
/**
* @private
*/
_onChangeQty: function () {
this._checkCanSubmit();
},
_onChangeShippingAddress: function (ev) {
const $address_container = $(ev.currentTarget.parentElement);
$address_container.find("input").removeAttr("checked");
$address_container
.find(".o_rma_portal_shipping_card")
.removeClass("bg-primary")
.removeClass("text-primary");
$(ev.currentTarget).find("input").attr("checked", "checked");
$(ev.currentTarget).addClass("bg-primary").addClass("text-primary");
},
});
return publicWidget;
});

View file

@ -0,0 +1,5 @@
.request-rma-tbody {
td {
vertical-align: middle;
}
}

View file

@ -0,0 +1,64 @@
/** @odoo-module */
/* Copyright 2021 Tecnativa - David Vidal
License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). */
import tour from "web_tour.tour";
tour.register(
"rma_sale_portal",
{
test: true,
url: "/my/orders",
},
[
{
content: "Open the test sale order",
trigger: 'a:containsExact("Test Sale RMA SO")',
},
{
content: "Open the RMA request pop-up",
trigger: 'a:contains("Request RMAs")',
},
{
content:
"Submit button is disabled until we set quanity and requested operation",
trigger: "button[type='submit'][disabled]",
},
{
content: "Return 1 unit for the first row",
trigger: "input[name='0-quantity']",
run: "text 1",
},
{
content: "Select the operation",
trigger: "select[name='0-operation_id']",
run: "text Replace",
},
{
content: "Write some comments",
trigger: "textarea[name='0-description']",
run: "text I'd like to change this product",
},
{
content: "Unfold the Delivery Address picker",
trigger: "button:contains('Choose a delivery address')",
},
{
content: "Choose another address",
trigger: ".o_rma_portal_shipping_card:contains('Another address')",
run: "click",
},
{
content: "Submit the RMA",
trigger: "button[type='submit']",
},
{
content: "We're redirected to the new draft RMA",
trigger: "h5:contains('RMA Order')",
},
{
content: "We're redirected to the new draft RMA",
trigger: "h5:contains('RMA Order')",
},
]
);