Revision 1e091879
Von Bernd Bleßmann vor fast 4 Jahren hinzugefügt
SL/IR.pm | ||
---|---|---|
737 | 737 |
invoice = ?, taxzone_id = ?, notes = ?, taxincluded = ?, |
738 | 738 |
intnotes = ?, storno_id = ?, storno = ?, tax_point = ?, |
739 | 739 |
cp_id = ?, employee_id = ?, department_id = ?, delivery_term_id = ?, |
740 |
payment_id = ?, |
|
740 |
payment_id = ?, transaction_description = ?,
|
|
741 | 741 |
currency_id = (SELECT id FROM currencies WHERE name = ?), |
742 | 742 |
globalproject_id = ?, direct_debit = ? |
743 | 743 |
WHERE id = ?|; |
... | ... | |
748 | 748 |
'1', $taxzone_id, $restricter->process($form->{notes}), $form->{taxincluded} ? 't' : 'f', |
749 | 749 |
$form->{intnotes}, conv_i($form->{storno_id}), $form->{storno} ? 't' : 'f', conv_date($form->{tax_point}), |
750 | 750 |
conv_i($form->{cp_id}), conv_i($form->{employee_id}), conv_i($form->{department_id}), conv_i($form->{delivery_term_id}), |
751 |
conv_i($form->{payment_id}), |
|
751 |
conv_i($form->{payment_id}), $form->{transaction_description},
|
|
752 | 752 |
$form->{"currency"}, |
753 | 753 |
conv_i($form->{globalproject_id}), |
754 | 754 |
$form->{direct_debit} ? 't' : 'f', |
... | ... | |
1006 | 1006 |
ordnumber, quonumber, paid, taxincluded, notes, taxzone_id, storno, gldate, |
1007 | 1007 |
mtime, itime, |
1008 | 1008 |
intnotes, (SELECT cu.name FROM currencies cu WHERE cu.id=ap.currency_id) AS currency, direct_debit, |
1009 |
payment_id, delivery_term_id |
|
1009 |
payment_id, delivery_term_id, transaction_description
|
|
1010 | 1010 |
FROM ap |
1011 | 1011 |
WHERE id = ?|; |
1012 | 1012 |
$ref = selectfirst_hashref_query($form, $dbh, $query, conv_i($form->{id})); |
Auch abrufbar als: Unified diff
Einkaufsrechnungen: Vorgangsbezeichnung speichern und danach suchen können