summaryrefslogtreecommitdiff
path: root/FS/FS/quotation.pm
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-03-02 15:11:04 -0600
committerJonathan Prykop <jonathan@freeside.biz>2016-03-02 15:11:04 -0600
commit8b70832328eb02dc9253dab7b436c6479b588162 (patch)
tree9329dc8cc4201a39718cc844b1165c1c751e3995 /FS/FS/quotation.pm
parent96d579596bf4dfbb4cd959bf8dc350ef8dc7fa06 (diff)
RT#38733: Sales forecasting using quotes
Diffstat (limited to 'FS/FS/quotation.pm')
-rw-r--r--FS/FS/quotation.pm9
1 files changed, 9 insertions, 0 deletions
diff --git a/FS/FS/quotation.pm b/FS/FS/quotation.pm
index cb3d80b..db8b0fc 100644
--- a/FS/FS/quotation.pm
+++ b/FS/FS/quotation.pm
@@ -69,6 +69,13 @@ disabled
usernum
+=item close_date
+
+projected date when the quotation will be closed
+
+=item confidence
+
+projected confidence (expressed as integer) that quotation will close
=back
@@ -122,6 +129,8 @@ sub check {
|| $self->ut_numbern('_date')
|| $self->ut_enum('disabled', [ '', 'Y' ])
|| $self->ut_numbern('usernum')
+ || $self->ut_numbern('close_date')
+ || $self->ut_numbern('confidence')
;
return $error if $error;