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

时间:2016-01-22 23:53:07

标签: web-services type-conversion vtiger

我正在使用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)之后,如何格式化我的价格?

1 个答案:

答案 0 :(得分:0)

想出来。 默认情况下,在用户的设置中,它似乎是条目: Decimal SeparatorDigit Grouping Separator都设置为.。 我将数字分组1更改为,,现在它正在运行。