Ik denk dat de bijlagen voor zichzelf spreken.
Deze sectie stelt je in staat om alle bijdragen van dit lid te bekijken. Je kunt alleen de bijdragen zien waar je op dit moment toegang toe hebt.
Toon bijdragen-menu//Wanneer u marge producten heeft dient u dit aan te zetten. U moet eerst de handleiding volgen om OpenCart gereed te maken voor margeproducten.
private $_marge_rules_enabled = true;
private $_marge_rules_enabled = false;
case 'costheadings':
if(isset($parsed_response->costheading) && is_array($parsed_response->costheading)) {
foreach($parsed_response->costheading as $costheading) {
$options[$costheading->costheadingid] = $costheading->costheadingname;
}
}
break;
case 'costheadings':
if(isset($parsed_response->costheading)) {
if(is_array($parsed_response->costheading)) {
foreach($parsed_response->costheading as $costheading) {
$options[$costheading->costheadingid] = $costheading->costheadingname;
}
} elseif(isset($parsed_response->costheading->costheadingid) && isset($parsed_response->costheading->costheadingname)) {
$options[$parsed_response->costheading->costheadingid] = $parsed_response->costheading->costheadingname;
}
}
break;
<td class="left">Kostenplaats</td>
<td><select name="acumulus_module[0][entry_costheadings]">
object(stdClass)#109 (1) {
["costheading"]=>
object(stdClass)#104 (2) {
["costheadingid"]=>
string(5) "41024"
["costheadingname"]=>
string(8) "Algemeen"
}
}
var_dump($parsed_response);exit;
Citaat van: neshmedia op 06 mei, 2013, 19:20:56Ik heb je een e-mail gestuurd op danny@neshmedia.com.
@remgro, kun je de gegevens (ftp & opencart) doormailen naar acumulus@neshmedia.com of danny@neshmedia.com?
Citaat van: GuidoRemgro,Ja, de problemen zijn er nog steeds.. ik heb het geprobeerd zonder foutmeldingen door een if-statement in acamulus.php te zetten;
Speelt het probleem nog? De PHP errors zijn van het type notice en warning. Echter dit kan dingen toch goed in de war schoppen. Als het nog speelt zou ik de files wel willen inzien. Kun je mij jouw versie sturen van vq2-system_engine_controller.php en eventueel acumulus.php? Dan kijk ik even mee. Mocht je extra info hebben over de omgeving (versies etc) dan kan dat altijd helpen.
Gr,
Guido.
// if
if(isset($data[\'order_product\']) && is_array($data[\'order_product\']) && count($data[\'order_product\'])) {
foreach($data[\'order_product\'] as $product)
{
$taxRate = $this->getTaxRate($product[\'product_id\']);
$items[] = array(
\'itemnumber\' => $product[\'product_id\'],
\'product\' => htmlspecialchars($product[\'name\']),
\'unitprice\' => number_format($product[\'price\'], 4, \'.\', \'\'),
\'vatrate\' => number_format($taxRate[\'rate\'], 0),
\'quantity\' => $product[\'quantity\'],
\'costprice\' => \'\'
);
}
// endif
}
CiteerNotice: Undefined index: order_product in /home/username/domains/domainname.nl/public_html/system/library/acumulus.php on line 99
Warning: Invalid argument supplied for foreach() in /home/username/domains/domainname.nl/public_html/system/library/acumulus.php on line 99
Warning: Cannot modify header information - headers already sent by (output started at /home/username/domains/domainname.nl/public_html/admin/index.php:83) in /home/username/domains/domainname.nl/public_html/vqmod/vqcache/vq2-system_engine_controller.php on line 28
Warning: Cannot modify header information - headers already sent by (output started at /home/username/domains/domainname.nl/public_html/admin/index.php:83) in /home/username/domains/domainname.nl/public_html/vqmod/vqcache/vq2-system_engine_controller.php on line 29