Koha/koha-tmpl/intranet-tmpl/default/zh-TW/value_builder/unimarc_field_100.tmpl
acli 765730e2b1 Applied most of Arthur's corrections, some with editorial changes.
Some other corrections.
Copied graphics from en directory.
2004-02-29 00:54:50 +00:00

48 lines
1.8 KiB
Cheetah

<html>
<head>
<title>UNIMARC 欄 100 建立程序</title>
</head>
<body>
<form name="f_pop" onSubmit="javascript:report()">
<table>
<tr>
<td>登記日期 </td>
<td><input type="text" name="f1" maxlength=8 size=8 value="<!-- TMPL_VAR name="f1" -->"></td>
</tr>
<tr>
<td>出版日期碼 </td><td><select name="f2" size="1">
<option value="a" <!-- TMPL_IF name="f2a" -->SELECTED<!-- /TMPL_IF -->>目前仍有出版之期刊</option>
<option value="b" <!-- TMPL_IF name="f2b" -->SELECTED<!-- /TMPL_IF -->>已停刊之期刊</option>
<option value="c" <!-- TMPL_IF name="f2c" -->SELECTED<!-- /TMPL_IF -->>狀態不詳之期刊</option>
<option value="d" <!-- TMPL_IF name="f2d" -->SELECTED<!-- /TMPL_IF -->>完整專論</option>
<option value="e" <!-- TMPL_IF name="f2e" -->SELECTED<!-- /TMPL_IF -->>複製品</option>
</select>
</td>
</tr>
<tr>
<td>創刊年份</td>
<td><input type="text" name="f3" maxlength=4 size=5 value="<!-- TMPL_VAR name="f3" -->"></td>
</tr>
<tr>
<td>停刊年份</td>
<td><input type="text" name="f4" maxlength=4 size=5 value="<!-- TMPL_VAR name="f4" -->"></td>
</tr>
<tr><td colspan=2><input type="submit" value="好!"></td></tr>
</table>
</form>
<script>
function report() {
document.f_pop.f1.value=document.f_pop.f1.value+' ';
document.f_pop.f3.value=document.f_pop.f3.value+' ';
document.f_pop.f4.value=document.f_pop.f4.value+' ';
document.f_pop.f1.value=document.f_pop.f1.value.substring(0,8);
document.f_pop.f3.value=document.f_pop.f3.value.substring(0,4);
document.f_pop.f4.value=document.f_pop.f4.value.substring(0,4);
opener.document.f.field_value[<!-- TMPL_VAR name="index" -->].value= document.f_pop.f1.value + document.f_pop.f2.value +document.f_pop.f3.value +document.f_pop.f4.value;
self.close();
return false;
}
</script>
</body>
</html>