Revision 2d193a2e
Von Jan Büren vor fast 13 Jahren hinzugefügt
SL/DB/MetaSetup/Customer.pm | ||
---|---|---|
37 | 37 |
bank_code => { type => 'text' }, |
38 | 38 |
bank => { type => 'text' }, |
39 | 39 |
language => { type => 'varchar', length => 5 }, |
40 |
datevexport => { type => 'integer' }, |
|
41 | 40 |
itime => { type => 'timestamp', default => 'now()' }, |
42 | 41 |
mtime => { type => 'timestamp' }, |
43 | 42 |
obsolete => { type => 'boolean', default => 'false' }, |
... | ... | |
51 | 50 |
taxzone_id => { type => 'integer', default => '0', not_null => 1 }, |
52 | 51 |
greeting => { type => 'text' }, |
53 | 52 |
ustid => { type => 'text' }, |
54 |
direct_debit => { type => 'boolean', default => 'false' }, |
|
55 | 53 |
iban => { type => 'varchar', length => 100 }, |
56 | 54 |
bic => { type => 'varchar', length => 100 }, |
55 |
direct_debit => { type => 'boolean', default => 'false' }, |
|
57 | 56 |
curr => { type => 'character', length => 3 }, |
58 | 57 |
], |
59 | 58 |
|
Auch abrufbar als: Unified diff
Entfernen der Spalte datevexport in Tabelle vendor und customer.
Dieser Status wird beim Datevexport überhaupt nicht berücksichtigt.
Entsprechend auch die Funktion setdatevexport und die beiden Trigger
customer_datevexport und vendor_datevexport rausgenommen.