For my company i would like for the pickers to fill in a html form with the delivery ID, the form will go to the code below. The purpose of the following code is to search the correct delivery slip and confirm it.
When i run the code on my webpage I get the return that everything was successful, but when i Look to the corresponding order in Odoo(10) nothing is changes with the deliveryslip. As I am using the libary and url / db / username / password also for a other script i am sure these are correct.
<?php
$deliveryOrderId = $_POST['deliveryOrderId'];
require 'test/ripcord.php';
// Odoo server information
$url = 'xxxx';
$db = 'xxxx';
$username = 'xxx';
$password = 'xxxx';
// Connect to Odoo server and authenticate
$common = ripcord::client($url . '/xmlrpc/2/common');
$uid = $common->authenticate($db, $username, $password, array());
if ($uid) {
// Connect to Odoo's 'stock.picking' model
$models = ripcord::client($url . '/xmlrpc/2/object');
// Search for the delivery order based on the provided $deliveryOrderId
$deliveryOrderIds = $models->execute_kw(
$db,
$uid,
$password,
'stock.picking',
'search',
array(
array(
array('id', '=', $deliveryOrderId)
)
)
);
if ($deliveryOrderIds) {
// Confirm the delivery order
$models->execute_kw(
$db,
$uid,
$password,
'stock.picking',
'action_confirm',
array($deliveryOrderIds)
);
echo "Delivery order confirmed successfully.";
} else {
echo "Delivery order not found.";
}
} else {
echo "Authentication failed.";
}
?>
The following code gets the variables $picking_id & $locatie from a html form. And then search if the ID exists after that it copy's the quantity's to done and then does the do_new_tranfer methode to confirm the picking.