use of sic.util.FormatterFechaHora in project sic by belluccifranco.
the class DetalleProductoGUI method cargarProductoParaModificar.
// </editor-fold>//GEN-END:initComponents
private void cargarProductoParaModificar() {
txt_Codigo.setText(productoModificar.getCodigo());
txt_Descripcion.setText(productoModificar.getDescripcion());
txt_Nota.setText(productoModificar.getNota());
cmb_Medida.setSelectedItem(productoModificar.getMedida());
chk_Ilimitado.setSelected(productoModificar.isIlimitado());
txt_Cantidad.setValue(productoModificar.getCantidad());
txt_CantMinima.setValue(productoModificar.getCantMinima());
cmb_Rubro.setSelectedItem(productoModificar.getRubro());
cmb_Proveedor.setSelectedItem(productoModificar.getProveedor());
FormatterFechaHora formateador = new FormatterFechaHora(FormatterFechaHora.FORMATO_FECHAHORA_LETRAS);
lbl_FechaUltimaModificacion.setText(formateador.format(productoModificar.getFechaUltimaModificacion()));
lbl_FechaAlta.setText(formateador.format(productoModificar.getFechaAlta()));
dc_Vencimiento.setDate(productoModificar.getFechaVencimiento());
txt_Estanteria.setText(productoModificar.getEstanteria());
txt_Estante.setText(productoModificar.getEstante());
precioDeCosto = productoModificar.getPrecioCosto();
txt_PrecioCosto.setValue(precioDeCosto);
gananciaPorcentaje = productoModificar.getGanancia_porcentaje();
txt_Ganancia_Porcentaje.setValue(gananciaPorcentaje);
gananciaNeto = productoModificar.getGanancia_neto();
txt_Ganancia_Neto.setValue(gananciaNeto);
pvp = productoModificar.getPrecioVentaPublico();
txt_PVP.setValue(pvp);
cmb_IVA_Porcentaje.setSelectedItem(productoModificar.getIva_porcentaje());
IVANeto = productoModificar.getIva_neto();
txt_IVA_Neto.setValue(IVANeto);
precioDeLista = productoModificar.getPrecioLista();
txt_PrecioLista.setValue(precioDeLista);
}
Aggregations