Revision f7bab957
Von Bernd Bleßmann vor fast 9 Jahren hinzugefügt
SL/Controller/CustomerVendor.pm | ||
---|---|---|
535 | 535 |
my $name = 'shipto'. $_; |
536 | 536 |
$name => $self->{shipto}->$name; |
537 | 537 |
} |
538 |
qw(_id name department_1 department_2 street zipcode city country contact phone fax email) |
|
538 |
qw(_id name department_1 department_2 street zipcode city gln country contact phone fax email)
|
|
539 | 539 |
) |
540 | 540 |
}; |
541 | 541 |
|
sql/Pg-upgrade2/customer_vendor_shipto_add_gln.sql | ||
---|---|---|
1 |
-- @tag: customer_vendor_shipto_add_gln |
|
2 |
-- @description: Spalte für GLN bei Kunde/Lieferant und Lieferadresse |
|
3 |
-- @depends: release_3_3_0 |
|
4 |
-- @encoding: utf-8 |
|
5 |
|
|
6 |
ALTER TABLE customer ADD COLUMN gln TEXT; |
|
7 |
ALTER TABLE vendor ADD COLUMN gln TEXT; |
|
8 |
ALTER TABLE shipto ADD COLUMN shiptogln TEXT; |
templates/webpages/customer_vendor/tabs/billing.html | ||
---|---|---|
114 | 114 |
</td> |
115 | 115 |
</tr> |
116 | 116 |
|
117 |
<tr> |
|
118 |
<th align="right" nowrap>[% 'GLN' | $T8 %]</th> |
|
119 |
|
|
120 |
<td> |
|
121 |
[% L.input_tag('cv.gln', SELF.cv.gln, size = 30) %] |
|
122 |
</td> |
|
123 |
</tr> |
|
124 |
|
|
117 | 125 |
<tr> |
118 | 126 |
<th align="right" nowrap>[% 'Contact' | $T8 %]</th> |
119 | 127 |
|
templates/webpages/customer_vendor/tabs/shipto.html | ||
---|---|---|
72 | 72 |
</td> |
73 | 73 |
</tr> |
74 | 74 |
|
75 |
<tr> |
|
76 |
<th align="right" nowrap>[% 'GLN' | $T8 %]</th> |
|
77 |
|
|
78 |
<td> |
|
79 |
[% L.input_tag('shipto.shiptogln', SELF.shipto.shiptogln, size = 35) %] |
|
80 |
</td> |
|
81 |
</tr> |
|
82 |
|
|
75 | 83 |
<tr> |
76 | 84 |
<th align="right" nowrap>[% 'Contact' | $T8 %]</th> |
77 | 85 |
|
Auch abrufbar als: Unified diff
GLN: Speichern und Anzeigen in den Stammdaten (Rechnungs- u. Lieferadressen).