1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
odoo.define('point_of_sale.tour.ProductConfigurator', function (require) {
'use strict';
const { ProductScreen } = require('point_of_sale.tour.ProductScreenTourMethods');
const { ProductConfigurator } = require('point_of_sale.tour.ProductConfiguratorTourMethods');
const { getSteps, startSteps } = require('point_of_sale.tour.utils');
var Tour = require('web_tour.tour');
// signal to start generating steps
// when finished, steps can be taken from getSteps
startSteps();
// Go by default to home category
ProductScreen.do.clickHomeCategory();
// Click on Configurable Chair product
ProductScreen.do.clickDisplayedProduct('Configurable Chair');
ProductConfigurator.check.isShown();
// Cancel configuration, not product should be in order
ProductConfigurator.do.cancelAttributes();
ProductScreen.check.orderIsEmpty();
// Click on Configurable Chair product
ProductScreen.do.clickDisplayedProduct('Configurable Chair');
ProductConfigurator.check.isShown();
// Pick Color
ProductConfigurator.do.pickColor('Red');
// Pick Radio
ProductConfigurator.do.pickSelect('Metal');
// Pick Select
ProductConfigurator.do.pickRadio('Other');
// Fill in custom attribute
ProductConfigurator.do.fillCustomAttribute('Custom Fabric');
// Confirm configuration
ProductConfigurator.do.confirmAttributes();
// Check that the product has been added to the order with correct attributes and price
ProductScreen.check.selectedOrderlineHas('Configurable Chair (Red, Metal, Other: Custom Fabric)', '1.0', '11.0');
// Orderlines with the same attributes should be merged
ProductScreen.do.clickHomeCategory();
ProductScreen.do.clickDisplayedProduct('Configurable Chair');
ProductConfigurator.do.pickColor('Red');
ProductConfigurator.do.pickSelect('Metal');
ProductConfigurator.do.pickRadio('Other');
ProductConfigurator.do.fillCustomAttribute('Custom Fabric');
ProductConfigurator.do.confirmAttributes();
ProductScreen.check.selectedOrderlineHas('Configurable Chair (Red, Metal, Other: Custom Fabric)', '2.0', '22.0');
// Orderlines with different attributes shouldn't be merged
ProductScreen.do.clickHomeCategory();
ProductScreen.do.clickDisplayedProduct('Configurable Chair');
ProductConfigurator.do.pickColor('Blue');
ProductConfigurator.do.pickSelect('Metal');
ProductConfigurator.do.pickRadio('Leather');
ProductConfigurator.do.confirmAttributes();
ProductScreen.check.selectedOrderlineHas('Configurable Chair (Blue, Metal, Leather)', '1.0', '10.0');
Tour.register('ProductConfiguratorTour', { test: true, url: '/pos/ui' }, getSteps());
});
|