Revision 13ae032e
Von Werner Hahn vor mehr als 2 Jahren hinzugefügt
SL/DB/ShopOrder.pm | ||
---|---|---|
239 | 239 |
obsolete => 'F', |
240 | 240 |
); |
241 | 241 |
} |
242 |
$customer->update_attributes(invoice_mail => $self->billing_email) if $customer->invoice_mail ne $self->billing_email; |
|
242 |
if( ref $customer eq 'SL::DB::Customer') { |
|
243 |
$customer->update_attributes(invoice_mail => $self->billing_email) if $customer->invoice_mail ne $self->billing_email; |
|
244 |
} |
|
243 | 245 |
|
244 | 246 |
return $customer; |
245 | 247 |
} |
Auch abrufbar als: Unified diff
ShopOrder: invoice_mail richtig übernehmen