Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,53 @@
odoo.define('website_sale_delivery.tour', function (require) {
'use strict';
var tour = require("web_tour.tour");
const tourUtils = require('website_sale.tour_utils');
tour.register('check_free_delivery', {
test: true,
url: '/shop?search=office chair black',
},
[
// Part 1: Check free delivery
{
content: "select office chair black",
trigger: '.oe_product_cart a:contains("Office Chair Black TEST")',
},
{
content: "click on add to cart",
trigger: '#product_details #add_to_cart',
},
tourUtils.goToCart(),
{
content: "go to checkout",
extra_trigger: '#cart_products input.js_quantity:propValue(1)',
trigger: 'a[href*="/shop/checkout"]',
},
{
content: "Check Free Delivery value to be zero",
extra_trigger: '#delivery_carrier label:containsExact("Delivery Now Free Over 10")',
trigger: "#delivery_carrier span:contains('0.0')"
},
// Part 2: check multiple delivery & price loaded asynchronously
{
content: "Ensure price was loaded asynchronously",
extra_trigger: '#delivery_carrier input[name="delivery_type"]:checked',
trigger: '#delivery_method .o_delivery_carrier_select:contains("20.0"):contains("The Poste")',
run: function () {}, // it's a check
},
{
content: "Select `Wire Transfer` payment method",
trigger: '#payment_method label:contains("Wire Transfer")',
},
{
content: "Click on Pay Now",
trigger: 'button[name="o_payment_submit_button"]:visible:not(:disabled)',
},
{
content: "Confirmation page should be shown",
trigger: '#oe_structure_website_sale_confirmation_1',
run: function () {}, // it's a check
}
]);
});