Revision 15e3714a
Von Bernd Bleßmann vor etwa 4 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
1898 | 1898 |
shiptocountry = ?, |
1899 | 1899 |
shiptogln = ?, |
1900 | 1900 |
shiptocontact = ?, |
1901 |
shiptocp_gender = ?, |
|
1902 | 1901 |
shiptophone = ?, |
1903 | 1902 |
shiptofax = ?, |
1904 | 1903 |
shiptoemail = ? |
1904 |
shiptocp_gender = ?, |
|
1905 | 1905 |
WHERE shipto_id = ?|; |
1906 | 1906 |
do_query($self, $dbh, $query, @values, $self->{shipto_id}); |
1907 | 1907 |
} else { |
... | ... | |
1915 | 1915 |
shiptocountry = ? AND |
1916 | 1916 |
shiptogln = ? AND |
1917 | 1917 |
shiptocontact = ? AND |
1918 |
shiptocp_gender = ? AND |
|
1919 | 1918 |
shiptophone = ? AND |
1920 | 1919 |
shiptofax = ? AND |
1921 | 1920 |
shiptoemail = ? AND |
1921 |
shiptocp_gender = ? AND |
|
1922 | 1922 |
module = ? AND |
1923 | 1923 |
trans_id = ?|; |
1924 | 1924 |
my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id); |
... | ... | |
1926 | 1926 |
my $insert_query = |
1927 | 1927 |
qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2, |
1928 | 1928 |
shiptostreet, shiptozipcode, shiptocity, shiptocountry, shiptogln, |
1929 |
shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
|
|
1929 |
shiptocontact, shiptophone, shiptofax, shiptoemail, shiptocp_gender, module)
|
|
1930 | 1930 |
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|; |
1931 | 1931 |
do_query($self, $dbh, $insert_query, $id, @values, $module); |
1932 | 1932 |
|
Auch abrufbar als: Unified diff
Individuelle Lieferadresse hinzufügen: falsche Reihenfolge der Werte korrigiert
kam mit "Individuelle Lieferadresse hinzufügen: cp_gender nicht vergessen"
(commit bca91008eddc6a1734a75fcd555f10d1c8ac65f6),
bzw. "Individuelle Lieferadresse hinzufügen: cp_gender nicht auf leer prüfen …"
(commit b8fa93b5d2cfff453fd8a82206d1a288407a8be6) rein.
Bezieht sich auch auf #410 (redmine)
Refs #410
Behebt #438 (redmine).