Unfortunately, you couldn't do it without negating the changes added in CORE-611 and CORE-1262 which were to automatically set the order-id on add/edit, respectively.
You could, at least temporarily, update the module to not attempt to fetch an order-id.
I haven't tested this, but you could try to update /components/modules/logicboxes/logicboxes.php (around line 318) from
elseif ($status == "active") {
if ($package->meta->type == "domain") {
$api->loadCommand("logicboxes_domains");
$domains = new LogicboxesDomains($api);
$order = array_intersect_key($vars, array('domain-name' => ""));
$response = $domains->orderid($order);
$this->processResponse($api, $response);
if ($this->Input->errors())
return;
$order_id = null;
if ($response->response())
$order_id = $response->response();
return array(
array('key' => "domain-name", 'value' => $vars['domain-name'], 'encrypted' => 0),
array('key' => "order-id", 'value' => $order_id, 'encrypted' => 0)
);
}
}
to
/*
elseif ($status == "active") {
if ($package->meta->type == "domain") {
$api->loadCommand("logicboxes_domains");
$domains = new LogicboxesDomains($api);
$order = array_intersect_key($vars, array('domain-name' => ""));
$response = $domains->orderid($order);
$this->processResponse($api, $response);
if ($this->Input->errors())
return;
$order_id = null;
if ($response->response())
$order_id = $response->response();
return array(
array('key' => "domain-name", 'value' => $vars['domain-name'], 'encrypted' => 0),
array('key' => "order-id", 'value' => $order_id, 'encrypted' => 0)
);
}
}
*/