diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-03-06 13:07:31 -0800 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-03-06 13:07:31 -0800 |
| commit | 2ecb2499069396f9e041d58bb1b32ee66c316526 (patch) | |
| tree | e4c9ff77ac5ebf6f5c0020622a83500249735e65 | |
| parent | 95e60c8173d4e10df22a6544959b0b31f2e154bb (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.pm | 3 |
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 }, ); } |
