通过网络服务将产品价格导入 VtigerCRM

Importing product prices into VtigerCRM via web services

我正在使用 vtwsclib – vtiger CRM Web Services Client Library version 1.4 除了导入价格,一切正常。

代码:

        $module = 'Products';
        $record = $clientCrm->doCreate
        (
            $module,
            Array
            (
                'productname'       =>  $sItemName,
                'cf_753'            =>  $sSku,
                'discontinued'      =>  1,
                'description'       =>  $sDescription,
                'unit_price'        =>  $sPrice,
            )
        );

现在我尝试将 $sPrice 设置为:

    $sPrice = '5';
    $sPrice = "5";
    $sPrice = 5;
    $sPrice = 5.0;
    $sPrice = (float) '5';
    $sPrice = floatval ('5');

每次进口我的价格都是 500 - 而不是 5。 所以我的问题是:在导入 Vtiger (6.4) 后,我需要如何设置价格以使其保持 5?

想通了。 默认情况下,在用户的设置中,它看起来像条目: Decimal SeparatorDigit Grouping Separator 都已设置为 .。 我将数字分组一更改为 ,,现在可以使用了。