Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用精确的在线 PHP SDK。我可以使用 POST 请求创建记录。
如何使用 Orderid 发送更新请求以更新 SalesOrder DeliveryDate?
请找到以下示例以准确在线更新请求
$salesorderline = new \Picqer\Financials\Exact\SalesOrderLine($connection); $s = $salesorderline->find('xxxxxx-xxxx-xxx-xxxxxx'); $s->Notes = 'mahamood'; $s->DeliveryDate = '2018-08-02 08:30:00.000000'; $s->update();