Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
4128 Widoki

Hi,


I'm wondering if there is a solution out there that when I create a RFQ and send it so a supplier via Email, that would include a link in the email so that the supplier can directly give a response to that RFQ (accept, decline or change the price)?


Thanks,

Michael

Awatar
Odrzuć
Autor Najlepsza odpowiedź

OK, i found the solution, here we go:



<?php

require_once('ripcord.php');

$url = "http://yourdomain.com";

$db = "yourdb";

$username = "youradminuser";

$password = "yourpw";

$po_id = 1;

$common = ripcord::client("$url/xmlrpc/2/common");

$uid = $common->authenticate($db, $username, $password, array());

$models = ripcord::client("$url/xmlrpc/2/object");

$models->exec_workflow(

$db, $uid, $password,

'purchase.order', 'bid_received',

$po_id

);

$models->exec_workflow(

$db, $uid, $password,

'purchase.order', 'purchase_confirm',

$po_id

);

?>


Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
lip 22
9312
1
mar 15
11435
1
mar 15
4039
3
sie 25
652
1
lip 25
564