-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathconstants.typoscript
More file actions
executable file
·111 lines (104 loc) · 4.33 KB
/
constants.typoscript
File metadata and controls
executable file
·111 lines (104 loc) · 4.33 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
plugin.tx_cart {
view {
templateRootPath = EXT:cart/Resources/Private/Templates/
partialRootPath = EXT:cart/Resources/Private/Partials/
layoutRootPath = EXT:cart/Resources/Private/Layouts/
}
taxClasses {
1 {
# cat=plugin.cart//0160; type=text; label= Tax rate: Enter the tax value for this tax class item (e.g. 19). Value will be displayed.
value = 19
# cat=plugin.cart//0161; type=text; label= Tax rate: Enter the tax rate for this tax class item (e.g. 0.19). Used for calculation.
calc = 0.19
# cat=plugin.cart//0162; type=text; label= Tax rate: Enter the name for this tax class item (e.g. normal). Value can be displayed.
name = normal
}
2 {
# cat=plugin.cart//0170; type=text; label= Tax rate: Enter the tax value for this tax class item (e.g. 7). Value will be displayed.
value = 7
# cat=plugin.cart//0171; type=text; label= Tax rate: Enter the tax rate for this tax class item (e.g. 0.07). Used for calculation.
calc = 0.07
# cat=plugin.cart//0172; type=text; label= Tax rate: Enter the name for this tax class item (e.g. reduced). Value can be displayed.
name = reduced
}
3 {
# cat=plugin.cart//0180; type=text; label= Tax rate: Enter the tax value for this tax class item (e.g. 0). Value will be displayed.
value = 0
# cat=plugin.cart//0181; type=text; label= Tax rate: Enter the tax rate for this tax class item (e.g. 0.19). Used for calculation.
calc = 0.00
# cat=plugin.cart//0182; type=text; label= Tax rate: Enter the name for this tax class item (e.g. free). Value can be displayed.
name = free
}
}
settings {
addToCartByAjax = 2278001
stockEventAfterPaymentEvent =
format.currency {
currencySign = €
decimalSeparator = ,
thousandsSeparator = .
prependCurrency = false
separateCurrency = true
decimals = 2
}
backend {
dateFormat = Y-m-d
}
validation {
orderItem {
fields {
acceptTermsAndConditions {
validator = Boolean
options.is = true
}
acceptRevocationInstruction {
validator = Boolean
options.is = true
}
acceptPrivacyPolicy {
validator = Boolean
options.is = true
}
}
}
billingAddress {
fields {
salutation.validator = NotEmpty
title.validator = Empty
firstName.validator = NotEmpty
lastName.validator = NotEmpty
email.validator = NotEmpty
phone.validator = Empty
fax.validator = Empty
company.validator = Empty
taxIdentificationNumber.validator = Empty
street.validator = NotEmpty
streetNumber.validator = Empty
addition.validator = Empty
zip.validator = NotEmpty
city.validator = NotEmpty
country.validator = NotEmpty
}
}
shippingAddress {
fields {
salutation.validator = NotEmpty
title.validator = Empty
firstName.validator = NotEmpty
lastName.validator = NotEmpty
email.validator = NotEmpty
phone.validator = Empty
fax.validator = Empty
company.validator = Empty
taxIdentificationNumber.validator = Empty
street.validator = NotEmpty
streetNumber.validator = Empty
addition.validator = Empty
zip.validator = NotEmpty
city.validator = NotEmpty
country.validator = NotEmpty
}
}
}
}
}