#7 Shopify interface does not work

This commit is contained in:
Roland Rusch 2023-07-19 16:24:25 +02:00
parent f5c61ca6eb
commit 64241842f6
2 changed files with 13 additions and 13 deletions

View File

@ -610,7 +610,7 @@ class Shopexport
'SELECT `id` 'SELECT `id`
FROM `shopexport` FROM `shopexport`
WHERE `aktiv` = 1 AND `autosendarticle` = 1 AND `artikelexport` = 1 WHERE `aktiv` = 1 AND `autosendarticle` = 1 AND `artikelexport` = 1
AND (`autosendarticle_last` IS NULL OR DATE_ADD(`autosendarticle_last` INTERVAL %d MINUTE) <= NOW())', AND (`autosendarticle_last` IS NULL OR DATE_ADD(`autosendarticle_last`, INTERVAL %d MINUTE) <= NOW())',
$minutes $minutes
) )
); );

View File

@ -396,7 +396,7 @@ class Shopimporter_Shopify extends ShopimporterBase
$this->adapter->call("products/".$result['data']['product']['id']."/metafields.json", 'POST', array('metafield' => [ $this->adapter->call("products/".$result['data']['product']['id']."/metafields.json", 'POST', array('metafield' => [
'key' => 'sync_status', 'key' => 'sync_status',
'value' => 1, 'value' => 1,
'value_type' => 'integer', 'type' => 'number_integer',
'namespace' => 'xentral', 'namespace' => 'xentral',
])); ]));
if($result['data']['product']['id'] == $nummer) { if($result['data']['product']['id'] == $nummer) {
@ -429,7 +429,7 @@ class Shopimporter_Shopify extends ShopimporterBase
$this->adapter->call("variants/".$resultv['variant']['id']."/metafields.json", 'POST', array('metafield' => [ $this->adapter->call("variants/".$resultv['variant']['id']."/metafields.json", 'POST', array('metafield' => [
'key' => 'sync_status', 'key' => 'sync_status',
'value' => 1, 'value' => 1,
'value_type' => 'integer', 'type' => 'number_integer',
'namespace' => 'xentral', 'namespace' => 'xentral',
])); ]));
$data['nummer'] = $resultv['data']['variant']['sku']; $data['nummer'] = $resultv['data']['variant']['sku'];
@ -1015,12 +1015,12 @@ class Shopimporter_Shopify extends ShopimporterBase
$dataproduct['product']['variants'][0]['metafields'] = array(array( $dataproduct['product']['variants'][0]['metafields'] = array(array(
"key" => "harmonized_system_code", "key" => "harmonized_system_code",
"value"=> $zolltarifnummer, "value"=> $zolltarifnummer,
"value_type"=> "string", "type"=> "text",
"namespace"=> "global"), "namespace"=> "global"),
[ [
'key' => 'sync_status', 'key' => 'sync_status',
'value' => 1, 'value' => 1,
'value_type' => 'integer', 'type' => 'number_integer',
'namespace' => 'xentral', 'namespace' => 'xentral',
]); ]);
if($pseudopreis != ''){ if($pseudopreis != ''){
@ -1185,12 +1185,12 @@ class Shopimporter_Shopify extends ShopimporterBase
$veigenschaften[] = array( $veigenschaften[] = array(
"key" => "harmonized_system_code", "key" => "harmonized_system_code",
"value"=> $value['zolltarifnummer'], "value"=> $value['zolltarifnummer'],
"value_type"=> "string", "type"=> "text",
"namespace"=> "global"); "namespace"=> "global");
$veigenschaften[] = [ $veigenschaften[] = [
'key' => 'sync_status', 'key' => 'sync_status',
'value' => 1, 'value' => 1,
'value_type' => 'integer', 'type' => 'number_integer',
'namespace' => 'xentral', 'namespace' => 'xentral',
]; ];
@ -3334,7 +3334,7 @@ class Shopimporter_Shopify extends ShopimporterBase
$this->adapter->call('orders/' . $auftrag . '/metafields.json', 'POST', array('metafield' => [ $this->adapter->call('orders/' . $auftrag . '/metafields.json', 'POST', array('metafield' => [
'key' => 'sync_status', 'key' => 'sync_status',
'value' => 1, 'value' => 1,
'value_type' => 'integer', 'type' => 'number_integer',
'namespace' => 'xentral', 'namespace' => 'xentral',
])); ]));
return 'ok'; return 'ok';
@ -3367,7 +3367,7 @@ class Shopimporter_Shopify extends ShopimporterBase
$this->adapter->call('orders/' . $auftrag . '/metafields.json', 'POST', array('metafield' => [ $this->adapter->call('orders/' . $auftrag . '/metafields.json', 'POST', array('metafield' => [
'key' => 'sync_status', 'key' => 'sync_status',
'value' => 3, 'value' => 3,
'value_type' => 'integer', 'type' => 'number_integer',
'namespace' => 'xentral', 'namespace' => 'xentral',
])); ]));
} }
@ -3420,7 +3420,7 @@ class Shopimporter_Shopify extends ShopimporterBase
$this->adapter->call('orders/' . $auftrag . '/metafields.json', 'POST', array('metafield' => [ $this->adapter->call('orders/' . $auftrag . '/metafields.json', 'POST', array('metafield' => [
'key' => 'sync_status', 'key' => 'sync_status',
'value' => 2, 'value' => 2,
'value_type' => 'integer', 'type' => 'number_integer',
'namespace' => 'xentral', 'namespace' => 'xentral',
])); ]));
}else{ }else{