[IMP] contract: Portal

This commit is contained in:
Víctor Martínez
2020-12-16 08:45:07 +01:00
committed by Pedro M. Baeza
parent f6f79aa785
commit 5f20736565
18 changed files with 490 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
odoo.define("contract.tour", function(require) {
"use strict";
var tour = require("web_tour.tour");
tour.register(
"contract_portal_tour",
{
test: true,
url: "/my",
},
[
{
content: "Go /my/contracts url",
trigger: 'a[href*="/my/contracts"]',
},
{
content: "Go to Contract item",
trigger: ".tr_contract_link:eq(0)",
},
]
);
});