Files
OMS/app/finance/view/setting/export.html
2025-12-28 23:13:25 +08:00

25 lines
712 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<tr>
<td style='width:100px;height:30px;'>导出模版:</td>
<td style='text-align:left;'>
<select name='salesExportType' onchange="changeDownExport(this.value);">
<option value='ar'>销售应收账单</option>
<option value='normal'>销售实收账单</option>
</select>
</td>
</tr>
<script>
function changeDownExport(flag){
if(flag == 'ar'){
$('filename').set('value','销售应收账单导入');
}
if(flag == 'normal'){
$('filename').set('value','销售实收账单导入');
}
}
changeDownExport('ar');
</script>