diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-03-16 20:28:56 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-05-24 14:55:02 -0400 |
commit | 674f60dc84dd3eaefba0d7c582a92f5679cf2f66 (patch) | |
tree | 822e370b801c835fc00dd8af0485c6d8787065ae /FS | |
parent | 2e24da864a3a71ec242f8feb2c13042a1d61faeb (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 a158f39c2..c70861cf7 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -1352,14 +1352,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, '', '', ], |