CON141.php 2.47 KB
<?php 
//*****************************************************************************
//* 
//* プログラム名:進捗情報画面
//* プログラムID:CON141
//* 機能        :進捗単位情報画面を表示する
//* 作成者      :
//* 
//*****************************************************************************

header("Content-type: text/html; charset=EUC-JP");
include("include/session_start.inc");
include("include/SessionChk.inc");
include("inc/header.inc");

include("include/input_chk.inc");
include("inc/CON141.inc");
//メニュー
include("menu_opacity.php");
?>
<form name="e_gru">
<?php  if ($PHP_BIT[0]==1){ ?>
<table width="100%" border="0" cellspacing="0">
	<tr>
		<td class="midashi">
			<table width="100%" border="0" cellpadding="0" cellspacing="0">
				<tr>
					<th width="50%" scope="col"><div align="left"><img src="image/t_kanri.gif" border="0"> プロジェクト管理設</div></th>
					<th width="50%" scope="col"><div align="right"><a href='javascript:Disp_Help("CON140HLP.htm")'><img src="image/help.gif" border="0"></a> <a href='javascript:Disp_Help("CON140HLP.htm")'>ヘルプ</a></div></th>
				</tr>
			</table>
			<div align="right"></div>
		</td>
	</tr>
</table>
<br>
<?php 
	if ($sinki_edit_flg=="sinki") {
		$strSyozokuCode="";
		$strBumonName="";
	}else{
		if ($sinki_edit_flg=="edit") {
			$strBumonArray=split("<///>",$bumon);
			$strSyozokuCode=$strBumonArray[0];
			$strBumonName=$strBumonArray[1];
		}
	}
?>
<span class="Chufont"></span><span class="Normalfont">は入力必須項目です</span>
<table width="402" border="0" cellspacing="1" cellpadding="1" class="mainColor">
	<tr><td>
	<table cellspacing="1" cellpadding="1" width="400" border="0">
		<tr bgcolor="#ffffff">
			<td class="toneDown"><span class="Normalfont">進捗単位</span><span class="Chufont"></span></td>
			<td><input type="text" maxLength="10" size="50" value="<?php echo htmlspecialchars($strBumonName)?>" name="bumon_name"></td>
		</tr>
	</table>
	</td></tr>
</table>
<table width="402" border="0" cellspacing="0" cellpadding="0">
	<tr>
	<TD height="40" width="402" align="center"><INPUT type="button" onclick="return chk();" value=" 設 定 " name="set">  <INPUT type="button" onclick="return back();" value=" 戻 る " name="modoru"></TD>
	</tr>
</table>
<br>
<hr width="100%">
<input type="hidden" name="syozoku_cd" value="<?php echo $strSyozokuCode?>">
<?php  }else{ ?>
  <a href="TOP000.php"><span class="Normalfont">マスタ変更権限がありません</span></a>
<?php  } ?>
</form>
<?php 
//コピーライト
include("include/copyright.inc");
?>