summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-03-06 13:07:30 -0800
committerIvan Kohler <ivan@freeside.biz>2012-03-06 13:07:30 -0800
commit1f816fc11f47f9d100d0fba04362de0623577b1c (patch)
tree8d3d7e09a2d2453c1db4375026f68fd828a22f23
parent436d9d6908bb197a593538c1ae2f71cb8b8a6f66 (diff)
fix selecting multiple services with "Invoice is billing for a certain service type" condition, RT#16831
-rw-r--r--FS/FS/part_event/Condition/cust_bill_has_service.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/FS/FS/part_event/Condition/cust_bill_has_service.pm b/FS/FS/part_event/Condition/cust_bill_has_service.pm
index 7c1916bea..3f3c9088a 100644
--- a/FS/FS/part_event/Condition/cust_bill_has_service.pm
+++ b/FS/FS/part_event/Condition/cust_bill_has_service.pm
@@ -23,6 +23,9 @@ sub option_fields {
(
'has_service' => { 'label' => 'Has service',
'type' => 'select-part_svc',
+ 'multiple' => 1, #the HTML element seems to have it
+ #by default, but edit/part_event.html
+ #(and process) need to know
},
);
}