File: /www/wwwroot/oa.sanjiangapp.com/app/crm/sales/view/create.html.php
<?php
/**
* The create view file of sales module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author chujilu <chujilu@cnezsoft.com>
* @package sales
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<div class='panel panel-block'>
<div class='panel-heading'>
<strong><?php echo $lang->sales->create;?></strong>
</div>
<div class='panel-body'>
<form method='post' id='ajaxForm'>
<table class='table table-form'>
<tr>
<th class='w-60px'><?php echo $lang->sales->name;?></th>
<td><?php echo html::input('name', '', "class='form-control'");?></td><td></td>
</tr>
<tr>
<th><?php echo $lang->sales->desc;?></th>
<td><?php echo html::textarea('desc', '', "rows='2' class='form-control'");?></td>
</tr>
<tr>
<th><?php echo $lang->sales->user;?></th>
<td><div class='checkbox-users'><?php echo html::checkbox('users', $users);?></div></td>
</tr>
<tr>
<th></th>
<td class='form-actions'> <?php echo html::submitButton() . html::backButton();?></td>
</tr>
</table>
</form>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>