diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-03-16 20:28:56 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-03-16 20:28:56 -0400 |
commit | 512a0bda605fad4de680649f5b9d6d61fcc42148 (patch) | |
tree | 8c6a040de9c7368bd2aa4caec13d3472759a3dee /FS | |
parent | d916a044ea5f23d8aea57da5be483d357e7f7a47 (diff) |
RT# 74666, Added quotation description to customer quotation list and quotation view
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Schema.pm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index d3619aa28..f3e7c4efb 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -1918,14 +1918,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, '', '', ], |