allow_sales_invoice_from_sales_order => { type => 'boolean', default => 'true', not_null => 1 },
allow_sales_invoice_from_sales_quotation => { type => 'boolean', default => 'true', not_null => 1 },
ap_changeable => { type => 'integer', default => 2, not_null => 1 },
+ ap_chart_id => { type => 'integer' },
ap_show_mark_as_paid => { type => 'boolean', default => 'true' },
ar_changeable => { type => 'integer', default => 2, not_null => 1 },
+ ar_chart_id => { type => 'integer' },
ar_paid_accno_id => { type => 'integer' },
ar_show_mark_as_paid => { type => 'boolean', default => 'true' },
articlenumber => { type => 'text' },
payments_changeable => { type => 'integer', default => '0', not_null => 1 },
pdonumber => { type => 'text' },
ponumber => { type => 'text' },
+ precision => { type => 'numeric', precision => 15, scale => 5, default => '0.01', not_null => 1 },
profit_determination => { type => 'text' },
project_status_id => { type => 'integer' },
project_type_id => { type => 'integer' },
revtrans => { type => 'boolean', default => 'false' },
rfqnumber => { type => 'text' },
rmanumber => { type => 'text' },
+ rndgain_accno_id => { type => 'integer'},
+ rndloss_accno_id => { type => 'integer'},
sales_delivery_order_show_delete => { type => 'boolean', default => 'true' },
sales_order_show_delete => { type => 'boolean', default => 'true' },
sales_purchase_order_ship_missing_column => { type => 'boolean', default => 'false' },
sepa_creditor_id => { type => 'text' },
servicenumber => { type => 'text' },
show_bestbefore => { type => 'boolean', default => 'false' },
+ show_longdescription_select_item => { type => 'boolean', default => 'false' },
show_weight => { type => 'boolean', default => 'false', not_null => 1 },
signature => { type => 'text' },
sonumber => { type => 'text' },
__PACKAGE__->meta->allow_inline_column_values(1);
__PACKAGE__->meta->foreign_keys(
+ ap_chart => {
+ class => 'SL::DB::Chart',
+ key_columns => { ap_chart_id => 'id' },
+ },
+
+ ar_chart => {
+ class => 'SL::DB::Chart',
+ key_columns => { ar_chart_id => 'id' },
+ },
bin => {
class => 'SL::DB::Bin',
key_columns => { bin_id => 'id' },