I have installed everything and except for the small glitch I have with my addresses on the invoice everything worked fine. I didn't want the e-mails to be sent automaticly anymore, because my customers found it confusing (they have to pay upfront and they received the invoice twice). So I replaced the lines:
Code: Select all
if( $curr_order_status=="P" && $d["order_status"]=="C" && $notify_customer == 1) {
PhocaPDFVirtueMartHelper::createDeliveryAndPDFandSendEmail($vmLogger, $VM_LANG, CLASSPATH);
}
if( !empty($notify_customer) ) {
//$this->notify_customer( $d );
}
Code: Select all
if( !empty($notify_customer) ) {
$this->notify_customer( $d );
}
Grtz,
Rianne