zentaopms/extension/max/budget/view/batchcreate.html.php
2023-05-16 10:50:42 +08:00

52 lines
2.3 KiB
PHP

<?php
/**
* The batchCreate view of budget module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package budget
* @version $Id: batchCreate.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $
* @link http://www.zentao.net
*/
?>
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
<?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
<div id="mainContent" class="main-content fade">
<div class="center-block">
<div class="main-header">
<h2><?php echo $lang->budget->batchCreate;?></h2>
</div>
<form class="main-form form-ajax" method='post' enctype='multipart/form-data'>
<table class="table table-form">
<thead>
<tr>
<th class='w-40px'><?php echo $lang->idAB;?></th>
<th class='w-200px required'><?php echo $lang->budget->stage;?> </th>
<th class='w-200px required'><?php echo $lang->budget->subject;?> </th>
<th class='required'><?php echo $lang->budget->name;?> </th>
<th class='w-150px'><?php echo $lang->budget->amount;?> </th>
<th class='w-180px'><?php echo $lang->budget->desc;?> </th>
</tr>
</thead>
<tbody>
<?php for($i = 1; $i <= 10; $i++):?>
<tr>
<td><?php echo $i;?></td>
<td><?php echo html::select("stage[$i]", $plans, '', 'class="form-control chosen"');?></td>
<td><?php echo html::select("subject[$i]", $subjects, '', 'class="form-control chosen"');?></td>
<td><?php echo html::input("name[$i]", '', 'class="form-control"');?></td>
<td><?php echo html::input("amount[$i]", '', 'class="form-control"');?></td>
<td><?php echo html::textarea("desc[$i]", '', 'class="form-control" rows=1');?></td>
</tr>
<?php endfor;?>
<tr>
<td colspan='5' class='text-center form-actions'><?php echo html::submitButton() . html::backButton();?></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>