You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
8.4 KiB
128 lines
8.4 KiB
6 months ago
|
<?xml version='1.0' encoding='UTF-8' ?>
|
||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
||
|
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
||
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
||
|
xmlns:f="http://xmlns.jcp.org/jsf/core"
|
||
|
xmlns:p="http://primefaces.org/ui">
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<ui:composition template="./template/principal.xhtml">
|
||
|
|
||
|
|
||
|
<ui:define name="top">
|
||
|
<center><h2> P R O D U C T O S</h2></center>
|
||
|
</ui:define>
|
||
|
|
||
|
<ui:define name="left" >
|
||
|
<h:form >
|
||
|
<p:menu style="border-color: gray; margin: 1px; width: 163px; height: 600px;">
|
||
|
|
||
|
<p:menuitem action="ProductoLista.xhtml" value="Productos" ajax="false" icon="pi pi-shopping-bag" iconPos="left" style="background-color: lightgray" styleClass="botonMenu" />
|
||
|
<p:menuitem action="proveedorLista.xhtml" value="Proveedores" ajax="false" icon="pi pi-id-card" iconPos="left" style="background-color: white " styleClass="botonMenu"/>
|
||
|
<p:menuitem action="marcaLista.xhtml" value="Marcas" ajax="false" icon="pi pi-tag" iconPos="left" style="background-color: lightgray" styleClass="botonMenu" />
|
||
|
<p:menuitem action="categoriaLista.xhtml" value="Categorias" ajax="false" icon="pi pi-star" iconPos="left" style="background-color: white" styleClass="botonMenu" />
|
||
|
<p:menuitem action="UbicacionAlmacenLista.xhtml" value="Almacen" ajax="false" icon="pi pi-map-marker" iconPos="left" style="background-color: lightgray" styleClass="botonMenu"/>
|
||
|
<p:menuitem action="usuariosLista.xhtml" value="Usuarios" ajax="false" icon="pi pi-users" iconPos="left" style="background-color: white" styleClass="botonMenu" />
|
||
|
</p:menu>
|
||
|
</h:form>
|
||
|
</ui:define>
|
||
|
|
||
|
<ui:define name="content">
|
||
|
<f:view>
|
||
|
|
||
|
<h:form style="height: 600px;" class="form-container">
|
||
|
|
||
|
<h1><h:outputText value="Crear Producto"/></h1>
|
||
|
<h:panelGrid id="grid" columns="6" style="width: 100%">
|
||
|
<p:outputLabel style="font-weight:bolder" value="Nombre:" for="nombre" />
|
||
|
<p:inputText id="nombre" value="#{demoBeanProductos.producto.nombre}" title="Nombre" required="true" requiredMessage="Campo requerido" />
|
||
|
<p:message for="nombre"/>
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder" value="Codigo:" for="codigo" />
|
||
|
<p:inputText id="codigo" value="#{demoBeanProductos.producto.codigo}" title="Codigo" required="true" requiredMessage="Campo requerido" />
|
||
|
<p:message for="codigo"/>
|
||
|
|
||
|
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder" value="Precio:" for="precio" />
|
||
|
<p:inputText id="precio" value="#{demoBeanProductos.producto.precio}" title="Precio" required="true" requiredMessage="Campo requerido" />
|
||
|
<p:message for="precio"/>
|
||
|
|
||
|
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder" value="Descripcion:" for="descripcion" />
|
||
|
<p:inputText id="descripcion" value="#{demoBeanProductos.producto.descripcion}" title="Descripcion" required="true" requiredMessage="Campo requerido" />
|
||
|
<p:message for="descripcion"/>
|
||
|
|
||
|
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder" value="Stock:" for="stock" />
|
||
|
<p:inputText id="stock" value="#{demoBeanProductos.producto.stock}" title="Stock" required="true" requiredMessage="Campo requerido" />
|
||
|
<p:message for="stock"/>
|
||
|
|
||
|
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder" value="Fecha Adquisicion:" for="fechaadquisicion" />
|
||
|
<p:inputText id="fechaadquisicion" value="#{demoBeanProductos.producto.fechaadquisicion}" title="Fechaadquisicion" required="true" requiredMessage="Campo requerido" >
|
||
|
<f:convertDateTime pattern="MM/dd/yyyy" />
|
||
|
</p:inputText>
|
||
|
<p:message for="fechaadquisicion"/>
|
||
|
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder" value="Estado Producto:" for="estadoproducto" />
|
||
|
<p:inputText id="estadoproducto" value="#{demoBeanProductos.producto.estadoproducto}" title="Estadoproducto" required="true" requiredMessage="Campo requerido"/>
|
||
|
<p:message for="estadoproducto"/>
|
||
|
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder" value="Submarca:" for="submarca" />
|
||
|
<p:inputText id="submarca" value="#{demoBeanProductos.producto.submarca}" title="Submarca" required="true" requiredMessage="Campo requerido"/>
|
||
|
<p:message for="submarca"/>
|
||
|
|
||
|
|
||
|
<p:outputLabel style="font-weight:bolder;" value="Categoria:" for="categoriaId" />
|
||
|
<p:selectOneMenu id="categoriaId" value="#{demoBeanProductos.producto.categoriaId}" converter="selectOneMenuConverter" >
|
||
|
<f:selectItems value="#{demoBeanCategoria.categorias}" var="item" itemLabel="#{item.nombre}" itemValue="#{item}" />
|
||
|
</p:selectOneMenu>
|
||
|
|
||
|
<br></br>
|
||
|
<p:outputLabel style="font-weight:bolder" value="Marca:" for="marcaId" />
|
||
|
<p:selectOneMenu id="marcaId" value="#{demoBeanProductos.producto.marcaId}" converter="selectOneMenuConverter" >
|
||
|
<f:selectItems value="#{demoBeanMarca.marcas}" var="item" itemLabel="#{item.nombre}" itemValue="#{item}"/>
|
||
|
</p:selectOneMenu>
|
||
|
|
||
|
|
||
|
<br></br>
|
||
|
<p:outputLabel style="font-weight:bolder;" value="Proveedor:" for="proveedorId" />
|
||
|
<p:selectOneMenu id="proveedorId" value="#{demoBeanProductos.producto.proveedorId}" converter="selectOneMenuConverter" >
|
||
|
|
||
|
|
||
|
<f:selectItems value="#{demoBeanProveedor.all}" var="item" itemLabel="#{item.nombre}" itemValue="#{item}"/>
|
||
|
</p:selectOneMenu>
|
||
|
<br></br>
|
||
|
<p:outputLabel style="font-weight:bolder; " value="Ubicacion Almacen:" for="ubicacionalmacenId" />
|
||
|
<p:selectOneMenu id="ubicacionalmacenId" value="#{demoBeanProductos.producto.ubicacionalmacenId}" converter="selectOneMenuConverter" >
|
||
|
|
||
|
|
||
|
<f:selectItems value="#{demoBeanUbicacionalmacen.all}" var="item" itemLabel="#{item.bodega}" itemValue="#{item}"/>
|
||
|
</p:selectOneMenu>
|
||
|
|
||
|
</h:panelGrid>
|
||
|
|
||
|
<p:commandButton style="margin-left: 10px; background-color:green; border-color:green; " icon="pi pi-check" action="#{demoBeanProductos.agregarProducto()}" ajax="false" update="grid" rendered="#{demoBeanProductos.nuevo}"/>
|
||
|
<p:commandButton action="ProductoLista.xhtml" actionListener="#{demoBeanProductos.editarProducto()}" ajax="false" icon="pi pi-check" style="margin-left: 10px; background-color:green; border-color:green;" update="grid" rendered="#{!demoBeanProductos.nuevo}"/>
|
||
|
<label> </label>
|
||
|
<p:commandButton action="ProductoLista.xhtml" ajax="false" icon="pi pi-times" immediate="true" style="background-color: red; border-color:red;"/>
|
||
|
|
||
|
</h:form>
|
||
|
|
||
|
</f:view>
|
||
|
|
||
|
</ui:define>
|
||
|
|
||
|
</ui:composition>
|
||
|
|
||
|
</body>
|
||
|
</html>
|