summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-03-16 20:28:56 -0400
committerChristopher Burger <burgerc@freeside.biz>2017-05-24 14:34:03 -0400
commit9c83820a962627f5b5e1e196c8ef310fb96c7407 (patch)
tree630d9d31b099d38b63d946a966ea1ddc020ab49c /FS
parent32c7933d64dba53b0b4eae7deea4540600b575ed (diff)
RT# 74666, Added quotation description to customer quotation list and quotation view
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/Schema.pm17
1 files changed, 9 insertions, 8 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 66a220592..d122dd582 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -1925,14 +1925,15 @@ sub tables_hashref {
'quotation' => {
'columns' => [
#regular fields
- 'quotationnum', 'serial', '', '', '', '',
- 'prospectnum', 'int', 'NULL', '', '', '',
- 'custnum', 'int', 'NULL', '', '', '',
- '_date', @date_type, '', '',
- 'disabled', 'char', 'NULL', 1, '', '',
- 'usernum', 'int', 'NULL', '', '', '',
- 'close_date', @date_type, '', '',
- 'confidence', 'int', 'NULL', '', '', '',
+ 'quotationnum', 'serial', '', '', '', '',
+ 'prospectnum', 'int', 'NULL', '', '', '',
+ 'custnum', 'int', 'NULL', '', '', '',
+ '_date', @date_type, '', '',
+ 'disabled', 'char', 'NULL', 1, '', '',
+ 'usernum', 'int', 'NULL', '', '', '',
+ 'close_date', @date_type, '', '',
+ 'confidence', 'int', 'NULL', '', '', '',
+ 'quotation_description', 'varchar', 'NULL', '50', '', '',
#'total', @money_type, '', '',
#'quotation_term', 'varchar', 'NULL', $char_d, '', '',
],