Revision f7bab957
Von Bernd Bleßmann vor etwa 9 Jahren hinzugefügt
SL/Controller/CustomerVendor.pm | ||
---|---|---|
my $name = 'shipto'. $_;
|
||
$name => $self->{shipto}->$name;
|
||
}
|
||
qw(_id name department_1 department_2 street zipcode city country contact phone fax email)
|
||
qw(_id name department_1 department_2 street zipcode city gln country contact phone fax email)
|
||
)
|
||
};
|
||
|
sql/Pg-upgrade2/customer_vendor_shipto_add_gln.sql | ||
---|---|---|
-- @tag: customer_vendor_shipto_add_gln
|
||
-- @description: Spalte für GLN bei Kunde/Lieferant und Lieferadresse
|
||
-- @depends: release_3_3_0
|
||
-- @encoding: utf-8
|
||
|
||
ALTER TABLE customer ADD COLUMN gln TEXT;
|
||
ALTER TABLE vendor ADD COLUMN gln TEXT;
|
||
ALTER TABLE shipto ADD COLUMN shiptogln TEXT;
|
templates/webpages/customer_vendor/tabs/billing.html | ||
---|---|---|
</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<th align="right" nowrap>[% 'GLN' | $T8 %]</th>
|
||
|
||
<td>
|
||
[% L.input_tag('cv.gln', SELF.cv.gln, size = 30) %]
|
||
</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Contact' | $T8 %]</th>
|
||
|
templates/webpages/customer_vendor/tabs/shipto.html | ||
---|---|---|
</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<th align="right" nowrap>[% 'GLN' | $T8 %]</th>
|
||
|
||
<td>
|
||
[% L.input_tag('shipto.shiptogln', SELF.shipto.shiptogln, size = 35) %]
|
||
</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Contact' | $T8 %]</th>
|
||
|
Auch abrufbar als: Unified diff
GLN: Speichern und Anzeigen in den Stammdaten (Rechnungs- u. Lieferadressen).