File tree 3 files changed +5
-5
lines changed 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- var CONF_builddate = "20250119-131821 "
1
+ var CONF_builddate = "20250119-133005 "
Original file line number Diff line number Diff line change @@ -6609,10 +6609,10 @@ var Lichtpunt = /** @class */ (function (_super) {
6609
6609
var print_str_upper = "";
6610
6610
if (this.props.is_halfwaterdicht) {
6611
6611
print_str_upper = "h";
6612
- if (parseInt(this.props.aantal) > 1)
6612
+ if (( parseInt(this.props.aantal) > 1) && (!sitplan) )
6613
6613
print_str_upper += ", x" + this.props.aantal; //Meer dan 1 lamp
6614
6614
}
6615
- else if (parseInt(this.props.aantal) > 1)
6615
+ else if (( parseInt(this.props.aantal) > 1) && (!sitplan) )
6616
6616
print_str_upper = "x" + this.props.aantal;
6617
6617
switch (this.props.type_lamp) {
6618
6618
case "led":
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ class Lichtpunt extends Electro_Item {
61
61
let print_str_upper = "" ;
62
62
if ( this . props . is_halfwaterdicht ) {
63
63
print_str_upper = "h" ;
64
- if ( parseInt ( this . props . aantal ) > 1 ) print_str_upper += ", x" + this . props . aantal ; //Meer dan 1 lamp
65
- } else if ( parseInt ( this . props . aantal ) > 1 )
64
+ if ( ( parseInt ( this . props . aantal ) > 1 ) && ( ! sitplan ) ) print_str_upper += ", x" + this . props . aantal ; //Meer dan 1 lamp
65
+ } else if ( ( parseInt ( this . props . aantal ) > 1 ) && ( ! sitplan ) )
66
66
print_str_upper = "x" + this . props . aantal ;
67
67
68
68
You can’t perform that action at this time.
0 commit comments