示例#1
0
	<link rel="stylesheet" href="../../css/bootstrap.css">
	<link rel="stylesheet" href="../../css/flat-ui.css">

	<link rel="stylesheet" href="../../css/spinner.css">
</head>
<body>

<?php 
require_once 'menu_inventario.php';
?>

<?php 
if ($error == 'existe') {
    require_once '/../../php/notify.php';
    $notificacion = new notify();
    $notificacion->warning("Producto Existente!!", "Esta descripcion ya existe");
}
?>

<form action="producto.agregar.php" method="POST" class="form1 center-block" ng-controller="ctrladd">
	<h4 align="center" style="font-size:20px;">Registrar Producto</h4>
	<div class="form-group">
		<h5 style="font-size: 14px;">Nombre Producto</h5>
		<input type="text" class="form-control" name="descripcion" placeholder="Descripcion o Nombre" required>
	</div>

	<div class="form-group">
		<h5 style="font-size: 14px;">Fabricante o Marca</h5>
		<input type="text" class="form-control" name="fabricante" placeholder="Fabricante del Producto" required>
	</div>
示例#2
0
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
	<title>Agregar Ingreso</title>

	<link rel="shortcut icon" type="image/x-icon" href="../../favicon.png">
	<link rel="stylesheet" href="../../css/bootstrap.css">
	<link rel="stylesheet" href="../../css/flat-ui.css">
</head>
<body>

<?php 
require_once 'menu_ingreso.php';
if ($error) {
    require_once '/../../php/notify.php';
    $notifica = new notify();
    $notifica->warning("Error de Datos", "El monto debe ser numérico");
}
?>

<form action="ingresos.agregar.php" method="POST" class="form1 center-block">
	<h4 align="center" style="font-size:20px;">Registrar Ingreso</h4>

	<div class="form-group">
		<h5 style="font-size: 14px;">Descripción</h5>
		<textarea name="descripcion" class="form-control" placeholder="Descripción o Referencia" rows="3" style="resize:none;" required></textarea>
	</div>

	<div class="form-group">
		<h5 style="font-size: 14px;">Monto</h5>
		<input type="text" class="form-control" name="monto" placeholder="Monto de Ingreso" maxlength="7" required>
	</div>
示例#3
0
	<link rel="shortcut icon" type="image/x-icon" href="../../favicon.png">
	<link rel="stylesheet" href="../../css/bootstrap.css">
	<link rel="stylesheet" href="../../css/flat-ui.css">

	<link rel="stylesheet" href="../../css/combobox.css">
	<link rel="stylesheet" href="../../css/bootstrap-select.css">
</head>
<body>

<?php 
require_once 'menu_inventario.php';
if ($error == 'existe') {
    require_once '/../../php/notify.php';
    $notificacion = new notify();
    $notificacion->warning("Servicio Existente!!", "Esta descripcion ya existe");
}
?>

<form action="servicio.agregar.php" method="POST" class="form1 center-block" ng-controller="ctrlservicio">
	<h4 align="center" style="font-size:20px;">Registrar Servicio</h4>
	<div class="form-group">
		<h5 style="font-size: 14px;">Nombre Servicio</h5>
		<input type="text" class="form-control" name="descripcion" placeholder="Descripcion o Nombre" required>
	</div>

	<div class="form-group">
		<h5 style="font-size: 14px;">Equipo</h5>
		<select name="maquina" class="form-control combobox-danger" >
			<optgroup>
				<option ng-repeat="maq in maquinas" value="{{maq.valor}}">{{maq.descripcion}}</option>