0
我需要指定默認的發貨方式,因爲Netsuite的輸入表單上沒有提供。由於各種原因,我必須在PDF/HTML模板中執行此操作。 這是我到目前爲止的代碼,但它似乎沒有工作;如果在Netsuite PDF/HTML模板上使用數字範圍的陳述
<#function toNumber val>
<#if val?has_content && val?length gt 0 >
<#return val?html?replace('[^0-9.]','','r')?number >
<#else><#return 0 ></#if></#function>
<#if record.shipmethod?has_content>
${record.shipmethod} <!-- if a courier is selected -->
<#else> <!-- else -->
<#list 2000..2560 as pcx> <!-- Sydney Metro postcodes -->
<#if toNumber(record.shipzip)==pcx>
Courier1 <!-- Standard Sydney Metro Courier -->
<#else> <!-- else -->
Courier2 <!-- Standard Interstate Courier -->
</#if></#list></#if>