Files
crm.clientright.ru/modules/PriceBooks/actions/ExportData.php

47 lines
1.6 KiB
PHP
Raw Normal View History

<?php
/* +**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
* ***********************************************************************************/
class PriceBooks_ExportData_Action extends Vtiger_ExportData_Action {
/**
* this function takes in an array of values for an user and sanitizes it for export
* @param array $arr - the array of values
*/
function sanitizeValues($arr) {
$relatedto = $arr['relatedto'];
$listPrice = $arr['listprice'];
unset($arr['relatedto']);
unset($arr['listprice']);
$arr = parent::sanitizeValues($arr);
if ($relatedto) {
$relatedModule = getSalesEntityType($relatedto);
$result = getEntityName($relatedModule, $relatedto, false);
$relatedToValue = $relatedModule . '::::' . $result[$relatedto];
}
$arr['relatedto'] = $relatedToValue;
$arr['listprice'] = $listPrice;
$relatedToValue = $relatedto = $listPrice = NULL;
return $arr;
}
public function getHeaders() {
if (!$this->headers) {
$translatedHeaders = parent::getHeaders();
$fieldList = array('Related To', 'ListPrice');
foreach ($fieldList as $fieldName) {
$translatedHeaders[] = $fieldName;
}
$this->headers = $translatedHeaders;
}
return $this->headers;
}
}