vtiger 5.1 中SO中 issue date数据源

在默认情况下issue date是获得服务 器生成PDF文件 时,当时服务器 上的时间。

 

如果我们希望将这个时间修改为这个SO创建的时间,那么你需要修改程序中的2个地方

修改文件:InventoryPDF.php

文件路径为:
/VTIGERROOT/include/InventoryPDF.php

添加下面的语句来获得这个订单的创建时间

 

        <textarea cols="50" rows="15" name="code" class="php">$create_time = $focus-&gt;column_fields[&quot;createdtime&quot;]; $create_time = getDisplayDate(date(&quot;Y-m-d&quot;,strtotime($create_time)));</textarea>

 

在显示控制中将取得当前时间的语句,修改为我们已经从数据库 中获得的变量。

文件名:header.php

文件路径:/VTIGERROOT/modules/SalesOrder/pdf_templates/header.php

<textarea cols="50" rows="15" name="code" class="php">$pdf-&gt;addRecBlock(getDisplayDate(date(&quot;Y-m-d&quot;)), $app_strings[&quot;Issue Date&quot;],$issueBlock);</textarea>

 

修改为

<textarea cols="50" rows="15" name="code" class="php">$pdf-&gt;addRecBlock($create_time, $app_strings[&quot;Create Date&quot;],$issueBlock);</textarea>

 

http://forums.hawebs.net/computer/viewthread.php?tid=305&extra=page%3D1

你可能感兴趣的:(vtiger 5.1 中SO中 issue date数据源)