Cambiare la forma enque se maneja el stock
This commit is contained in:
@@ -2,36 +2,27 @@ package xyz.danielcortes.controllers.libro;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import javax.swing.JOptionPane;
|
import javax.swing.JOptionPane;
|
||||||
import xyz.danielcortes.framework.BaseController;
|
|
||||||
import xyz.danielcortes.controllers.LaunchController;
|
import xyz.danielcortes.controllers.LaunchController;
|
||||||
|
import xyz.danielcortes.framework.BaseController;
|
||||||
|
import xyz.danielcortes.framework.BasePanel;
|
||||||
import xyz.danielcortes.framework.BaseTableModel;
|
import xyz.danielcortes.framework.BaseTableModel;
|
||||||
import xyz.danielcortes.framework.PanelName;
|
import xyz.danielcortes.framework.PanelName;
|
||||||
import xyz.danielcortes.framework.ValidationResult;
|
|
||||||
import xyz.danielcortes.models.Ejemplar;
|
|
||||||
import xyz.danielcortes.models.Libro;
|
import xyz.danielcortes.models.Libro;
|
||||||
import xyz.danielcortes.repository.EjemplarRepository;
|
|
||||||
import xyz.danielcortes.repository.LibroRepository;
|
import xyz.danielcortes.repository.LibroRepository;
|
||||||
import xyz.danielcortes.validator.EjemplarValidator;
|
|
||||||
import xyz.danielcortes.validator.LibroValidator;
|
import xyz.danielcortes.validator.LibroValidator;
|
||||||
import xyz.danielcortes.framework.BasePanel;
|
|
||||||
import xyz.danielcortes.views.libro.LibroAgregarStockDialog;
|
|
||||||
import xyz.danielcortes.views.libro.LibroSearchPanel;
|
import xyz.danielcortes.views.libro.LibroSearchPanel;
|
||||||
|
|
||||||
public class LibroSearchController extends BaseController {
|
public class LibroSearchController extends BaseController {
|
||||||
|
|
||||||
private LibroSearchPanel view;
|
private LibroSearchPanel view;
|
||||||
private LibroRepository libroRepository;
|
private LibroRepository libroRepository;
|
||||||
private EjemplarRepository ejemplarRepository;
|
|
||||||
private LibroValidator libroValidator;
|
private LibroValidator libroValidator;
|
||||||
private EjemplarValidator ejemplarValidator;
|
|
||||||
|
|
||||||
public LibroSearchController(LibroSearchPanel view, LaunchController parent) {
|
public LibroSearchController(LibroSearchPanel view, LaunchController parent) {
|
||||||
super(parent);
|
super(parent);
|
||||||
this.view = view;
|
this.view = view;
|
||||||
this.libroRepository = new LibroRepository();
|
this.libroRepository = new LibroRepository();
|
||||||
this.libroValidator = new LibroValidator(this.libroRepository);
|
this.libroValidator = new LibroValidator(this.libroRepository);
|
||||||
this.ejemplarRepository = new EjemplarRepository();
|
|
||||||
this.ejemplarValidator = new EjemplarValidator(this.ejemplarRepository);
|
|
||||||
this.loadLibroTable();
|
this.loadLibroTable();
|
||||||
this.setupListeners();
|
this.setupListeners();
|
||||||
}
|
}
|
||||||
@@ -52,7 +43,6 @@ public class LibroSearchController extends BaseController {
|
|||||||
this.view.getEliminarButton().addActionListener(e -> delete());
|
this.view.getEliminarButton().addActionListener(e -> delete());
|
||||||
this.view.getEditarButton().addActionListener(e -> edit());
|
this.view.getEditarButton().addActionListener(e -> edit());
|
||||||
this.view.getVerButton().addActionListener(e -> view());
|
this.view.getVerButton().addActionListener(e -> view());
|
||||||
this.view.getAgregarStockButton().addActionListener(e -> addStock());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void view() {
|
private void view() {
|
||||||
@@ -98,34 +88,6 @@ public class LibroSearchController extends BaseController {
|
|||||||
this.loadLibroTable(libros);
|
this.loadLibroTable(libros);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addStock() {
|
|
||||||
Libro libro = getSelectedLibro();
|
|
||||||
if (libro == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
LibroAgregarStockDialog dialog = new LibroAgregarStockDialog();
|
|
||||||
dialog.pack();
|
|
||||||
dialog.setLocationRelativeTo(null);
|
|
||||||
dialog.setVisible(true);
|
|
||||||
|
|
||||||
String serie = dialog.getSerie();
|
|
||||||
if (serie == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
ValidationResult ejemplarValidation = this.ejemplarValidator.validateSerie(serie, libro.getId());
|
|
||||||
if (ejemplarValidation.hasError()){
|
|
||||||
ejemplarValidation.showErrorDialog();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ejemplar ejemplar = new Ejemplar();
|
|
||||||
ejemplar.setLibro(libro);
|
|
||||||
ejemplar.setSerie(serie);
|
|
||||||
this.ejemplarRepository.save(ejemplar);
|
|
||||||
|
|
||||||
this.reload();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void loadLibroTable(List<Libro> libros) {
|
private void loadLibroTable(List<Libro> libros) {
|
||||||
BaseTableModel<Libro> model = this.view.getLibrosModel();
|
BaseTableModel<Libro> model = this.view.getLibrosModel();
|
||||||
model.setRows(libros);
|
model.setRows(libros);
|
||||||
|
|||||||
@@ -1,85 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="xyz.danielcortes.views.libro.LibroAgregarStockDialog">
|
|
||||||
<grid id="cbd77" binding="contentPane" layout-manager="GridLayoutManager" row-count="2" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
|
|
||||||
<margin top="10" left="10" bottom="10" right="10"/>
|
|
||||||
<constraints>
|
|
||||||
<xy x="48" y="54" width="436" height="297"/>
|
|
||||||
</constraints>
|
|
||||||
<properties/>
|
|
||||||
<border type="none"/>
|
|
||||||
<children>
|
|
||||||
<grid id="94766" layout-manager="GridLayoutManager" row-count="1" column-count="2" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
|
|
||||||
<margin top="0" left="0" bottom="0" right="0"/>
|
|
||||||
<constraints>
|
|
||||||
<grid row="1" column="0" row-span="1" col-span="1" vsize-policy="1" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
<properties/>
|
|
||||||
<border type="none"/>
|
|
||||||
<children>
|
|
||||||
<hspacer id="98af6">
|
|
||||||
<constraints>
|
|
||||||
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
</hspacer>
|
|
||||||
<grid id="9538f" layout-manager="GridLayoutManager" row-count="1" column-count="2" same-size-horizontally="true" same-size-vertically="false" hgap="-1" vgap="-1">
|
|
||||||
<margin top="0" left="0" bottom="0" right="0"/>
|
|
||||||
<constraints>
|
|
||||||
<grid row="0" column="1" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
<properties/>
|
|
||||||
<border type="none"/>
|
|
||||||
<children>
|
|
||||||
<component id="e7465" class="javax.swing.JButton" binding="buttonOK">
|
|
||||||
<constraints>
|
|
||||||
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
<properties>
|
|
||||||
<text value="OK"/>
|
|
||||||
</properties>
|
|
||||||
</component>
|
|
||||||
<component id="5723f" class="javax.swing.JButton" binding="buttonCancel">
|
|
||||||
<constraints>
|
|
||||||
<grid row="0" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
<properties>
|
|
||||||
<text value="Cancel"/>
|
|
||||||
</properties>
|
|
||||||
</component>
|
|
||||||
</children>
|
|
||||||
</grid>
|
|
||||||
</children>
|
|
||||||
</grid>
|
|
||||||
<grid id="e3588" layout-manager="GridLayoutManager" row-count="3" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
|
|
||||||
<margin top="0" left="0" bottom="0" right="0"/>
|
|
||||||
<constraints>
|
|
||||||
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
<properties/>
|
|
||||||
<border type="none"/>
|
|
||||||
<children>
|
|
||||||
<component id="acb2b" class="javax.swing.JLabel">
|
|
||||||
<constraints>
|
|
||||||
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="8" fill="0" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
<properties>
|
|
||||||
<text value="Numero de Serie:"/>
|
|
||||||
</properties>
|
|
||||||
</component>
|
|
||||||
<component id="798d0" class="javax.swing.JTextField" binding="serieField">
|
|
||||||
<constraints>
|
|
||||||
<grid row="1" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="6" anchor="8" fill="1" indent="0" use-parent-layout="false">
|
|
||||||
<preferred-size width="150" height="-1"/>
|
|
||||||
</grid>
|
|
||||||
</constraints>
|
|
||||||
<properties/>
|
|
||||||
</component>
|
|
||||||
<vspacer id="8814e">
|
|
||||||
<constraints>
|
|
||||||
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="6" hsize-policy="1" anchor="0" fill="2" indent="0" use-parent-layout="false"/>
|
|
||||||
</constraints>
|
|
||||||
</vspacer>
|
|
||||||
</children>
|
|
||||||
</grid>
|
|
||||||
</children>
|
|
||||||
</grid>
|
|
||||||
</form>
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
package xyz.danielcortes.views.libro;
|
|
||||||
|
|
||||||
import com.intellij.uiDesigner.core.GridConstraints;
|
|
||||||
import com.intellij.uiDesigner.core.GridLayoutManager;
|
|
||||||
import com.intellij.uiDesigner.core.Spacer;
|
|
||||||
import java.awt.Dimension;
|
|
||||||
import java.awt.Insets;
|
|
||||||
import java.awt.event.KeyEvent;
|
|
||||||
import java.awt.event.WindowAdapter;
|
|
||||||
import java.awt.event.WindowEvent;
|
|
||||||
import javax.swing.JButton;
|
|
||||||
import javax.swing.JComponent;
|
|
||||||
import javax.swing.JDialog;
|
|
||||||
import javax.swing.JLabel;
|
|
||||||
import javax.swing.JPanel;
|
|
||||||
import javax.swing.JTextField;
|
|
||||||
import javax.swing.KeyStroke;
|
|
||||||
|
|
||||||
public class LibroAgregarStockDialog extends JDialog {
|
|
||||||
|
|
||||||
private JPanel contentPane;
|
|
||||||
private JButton buttonOK;
|
|
||||||
private JButton buttonCancel;
|
|
||||||
private JTextField serieField;
|
|
||||||
|
|
||||||
private String serie;
|
|
||||||
|
|
||||||
public LibroAgregarStockDialog() {
|
|
||||||
setContentPane(contentPane);
|
|
||||||
setModal(true);
|
|
||||||
getRootPane().setDefaultButton(buttonOK);
|
|
||||||
|
|
||||||
buttonOK.addActionListener(e -> onOK());
|
|
||||||
buttonCancel.addActionListener(e -> onCancel());
|
|
||||||
|
|
||||||
setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
|
|
||||||
addWindowListener(new WindowAdapter() {
|
|
||||||
public void windowClosing(WindowEvent e) {
|
|
||||||
onCancel();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
contentPane.registerKeyboardAction(e -> onCancel(), KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onOK() {
|
|
||||||
this.serie = this.serieField.getText();
|
|
||||||
dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onCancel() {
|
|
||||||
dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSerie() {
|
|
||||||
return this.serie;
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
// GUI initializer generated by IntelliJ IDEA GUI Designer
|
|
||||||
// >>> IMPORTANT!! <<<
|
|
||||||
// DO NOT EDIT OR ADD ANY CODE HERE!
|
|
||||||
$$$setupUI$$$();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Method generated by IntelliJ IDEA GUI Designer >>> IMPORTANT!! <<< DO NOT edit this method OR call it in your code!
|
|
||||||
*
|
|
||||||
* @noinspection ALL
|
|
||||||
*/
|
|
||||||
private void $$$setupUI$$$() {
|
|
||||||
contentPane = new JPanel();
|
|
||||||
contentPane.setLayout(new GridLayoutManager(2, 1, new Insets(10, 10, 10, 10), -1, -1));
|
|
||||||
final JPanel panel1 = new JPanel();
|
|
||||||
panel1.setLayout(new GridLayoutManager(1, 2, new Insets(0, 0, 0, 0), -1, -1));
|
|
||||||
contentPane.add(panel1, new GridConstraints(1, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, 1, null, null, null, 0, false));
|
|
||||||
final Spacer spacer1 = new Spacer();
|
|
||||||
panel1.add(spacer1,
|
|
||||||
new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_WANT_GROW, 1, null,
|
|
||||||
null, null, 0, false));
|
|
||||||
final JPanel panel2 = new JPanel();
|
|
||||||
panel2.setLayout(new GridLayoutManager(1, 2, new Insets(0, 0, 0, 0), -1, -1, true, false));
|
|
||||||
panel1.add(panel2, new GridConstraints(0, 1, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
|
|
||||||
buttonOK = new JButton();
|
|
||||||
buttonOK.setText("OK");
|
|
||||||
panel2.add(buttonOK, new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_HORIZONTAL,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
|
|
||||||
buttonCancel = new JButton();
|
|
||||||
buttonCancel.setText("Cancel");
|
|
||||||
panel2.add(buttonCancel, new GridConstraints(0, 1, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_HORIZONTAL,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
|
|
||||||
final JPanel panel3 = new JPanel();
|
|
||||||
panel3.setLayout(new GridLayoutManager(3, 1, new Insets(0, 0, 0, 0), -1, -1));
|
|
||||||
contentPane.add(panel3, new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
|
|
||||||
final JLabel label1 = new JLabel();
|
|
||||||
label1.setText("Numero de Serie:");
|
|
||||||
panel3.add(label1, new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED,
|
|
||||||
GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
|
|
||||||
serieField = new JTextField();
|
|
||||||
panel3.add(serieField,
|
|
||||||
new GridConstraints(1, 0, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_WANT_GROW,
|
|
||||||
GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1), null, 0, false));
|
|
||||||
final Spacer spacer2 = new Spacer();
|
|
||||||
panel3.add(spacer2,
|
|
||||||
new GridConstraints(2, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_VERTICAL, 1, GridConstraints.SIZEPOLICY_WANT_GROW, null,
|
|
||||||
null, null, 0, false));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @noinspection ALL
|
|
||||||
*/
|
|
||||||
public JComponent $$$getRootComponent$$$() {
|
|
||||||
return contentPane;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
</component>
|
</component>
|
||||||
</children>
|
</children>
|
||||||
</grid>
|
</grid>
|
||||||
<grid id="606a7" layout-manager="GridLayoutManager" row-count="1" column-count="5" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
|
<grid id="606a7" layout-manager="GridLayoutManager" row-count="1" column-count="4" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
|
||||||
<margin top="0" left="0" bottom="0" right="0"/>
|
<margin top="0" left="0" bottom="0" right="0"/>
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
|
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
|
||||||
@@ -80,23 +80,13 @@
|
|||||||
</properties>
|
</properties>
|
||||||
</component>
|
</component>
|
||||||
<component id="bc714" class="javax.swing.JButton" binding="eliminarButton" default-binding="true">
|
<component id="bc714" class="javax.swing.JButton" binding="eliminarButton" default-binding="true">
|
||||||
<constraints>
|
|
||||||
<grid row="0" column="4" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="0" indent="0" use-parent-layout="false">
|
|
||||||
<preferred-size width="150" height="-1"/>
|
|
||||||
</grid>
|
|
||||||
</constraints>
|
|
||||||
<properties>
|
|
||||||
<text value="Eliminar"/>
|
|
||||||
</properties>
|
|
||||||
</component>
|
|
||||||
<component id="44c6c" class="javax.swing.JButton" binding="agregarStockButton" default-binding="true">
|
|
||||||
<constraints>
|
<constraints>
|
||||||
<grid row="0" column="3" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="0" indent="0" use-parent-layout="false">
|
<grid row="0" column="3" row-span="1" col-span="1" vsize-policy="0" hsize-policy="3" anchor="0" fill="0" indent="0" use-parent-layout="false">
|
||||||
<preferred-size width="150" height="-1"/>
|
<preferred-size width="150" height="-1"/>
|
||||||
</grid>
|
</grid>
|
||||||
</constraints>
|
</constraints>
|
||||||
<properties>
|
<properties>
|
||||||
<text value="Agregar Stock"/>
|
<text value="Eliminar"/>
|
||||||
</properties>
|
</properties>
|
||||||
</component>
|
</component>
|
||||||
<component id="74ae2" class="javax.swing.JButton" binding="crearButton" default-binding="true">
|
<component id="74ae2" class="javax.swing.JButton" binding="crearButton" default-binding="true">
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ import javax.swing.JScrollPane;
|
|||||||
import javax.swing.JTable;
|
import javax.swing.JTable;
|
||||||
import javax.swing.JTextField;
|
import javax.swing.JTextField;
|
||||||
import javax.swing.ListSelectionModel;
|
import javax.swing.ListSelectionModel;
|
||||||
|
import xyz.danielcortes.framework.BasePanel;
|
||||||
import xyz.danielcortes.framework.BaseTableModel;
|
import xyz.danielcortes.framework.BaseTableModel;
|
||||||
import xyz.danielcortes.models.Libro;
|
import xyz.danielcortes.models.Libro;
|
||||||
import xyz.danielcortes.framework.BasePanel;
|
|
||||||
|
|
||||||
public class LibroSearchPanel extends BasePanel {
|
public class LibroSearchPanel extends BasePanel {
|
||||||
|
|
||||||
@@ -25,7 +25,6 @@ public class LibroSearchPanel extends BasePanel {
|
|||||||
private JButton verButton;
|
private JButton verButton;
|
||||||
private JButton editarButton;
|
private JButton editarButton;
|
||||||
private JButton eliminarButton;
|
private JButton eliminarButton;
|
||||||
private JButton agregarStockButton;
|
|
||||||
private JButton crearButton;
|
private JButton crearButton;
|
||||||
|
|
||||||
public JTable getLibrosTable() {
|
public JTable getLibrosTable() {
|
||||||
@@ -60,10 +59,6 @@ public class LibroSearchPanel extends BasePanel {
|
|||||||
return eliminarButton;
|
return eliminarButton;
|
||||||
}
|
}
|
||||||
|
|
||||||
public JButton getAgregarStockButton() {
|
|
||||||
return agregarStockButton;
|
|
||||||
}
|
|
||||||
|
|
||||||
public JButton getCrearButton() {
|
public JButton getCrearButton() {
|
||||||
return crearButton;
|
return crearButton;
|
||||||
}
|
}
|
||||||
@@ -127,7 +122,7 @@ public class LibroSearchPanel extends BasePanel {
|
|||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1),
|
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1),
|
||||||
null, 0, false));
|
null, 0, false));
|
||||||
final JPanel panel2 = new JPanel();
|
final JPanel panel2 = new JPanel();
|
||||||
panel2.setLayout(new GridLayoutManager(1, 5, new Insets(0, 0, 0, 0), -1, -1));
|
panel2.setLayout(new GridLayoutManager(1, 4, new Insets(0, 0, 0, 0), -1, -1));
|
||||||
contentPane.add(panel2, new GridConstraints(2, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH,
|
contentPane.add(panel2, new GridConstraints(2, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH,
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
|
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW,
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
|
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
|
||||||
@@ -143,12 +138,7 @@ public class LibroSearchPanel extends BasePanel {
|
|||||||
null, 0, false));
|
null, 0, false));
|
||||||
eliminarButton = new JButton();
|
eliminarButton = new JButton();
|
||||||
eliminarButton.setText("Eliminar");
|
eliminarButton.setText("Eliminar");
|
||||||
panel2.add(eliminarButton, new GridConstraints(0, 4, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_NONE,
|
panel2.add(eliminarButton, new GridConstraints(0, 3, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_NONE,
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1),
|
|
||||||
null, 0, false));
|
|
||||||
agregarStockButton = new JButton();
|
|
||||||
agregarStockButton.setText("Agregar Stock");
|
|
||||||
panel2.add(agregarStockButton, new GridConstraints(0, 3, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_NONE,
|
|
||||||
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1),
|
GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1),
|
||||||
null, 0, false));
|
null, 0, false));
|
||||||
crearButton = new JButton();
|
crearButton = new JButton();
|
||||||
|
|||||||
@@ -128,6 +128,7 @@ public class TrabajadorViewPanel extends BasePanel {
|
|||||||
contentPane.add(label5, new GridConstraints(8, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED,
|
contentPane.add(label5, new GridConstraints(8, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED,
|
||||||
GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
|
GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
|
||||||
rutField = new JTextField();
|
rutField = new JTextField();
|
||||||
|
rutField.setEditable(false);
|
||||||
contentPane.add(rutField,
|
contentPane.add(rutField,
|
||||||
new GridConstraints(1, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_WANT_GROW,
|
new GridConstraints(1, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_WANT_GROW,
|
||||||
GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1), null, 0, false));
|
GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1), null, 0, false));
|
||||||
@@ -140,6 +141,7 @@ public class TrabajadorViewPanel extends BasePanel {
|
|||||||
contentPane.add(label6, new GridConstraints(10, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED,
|
contentPane.add(label6, new GridConstraints(10, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED,
|
||||||
GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
|
GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
|
||||||
usernameField = new JTextField();
|
usernameField = new JTextField();
|
||||||
|
usernameField.setEditable(false);
|
||||||
contentPane.add(usernameField,
|
contentPane.add(usernameField,
|
||||||
new GridConstraints(11, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_WANT_GROW,
|
new GridConstraints(11, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_WANT_GROW,
|
||||||
GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1), null, 0, false));
|
GridConstraints.SIZEPOLICY_FIXED, null, new Dimension(150, -1), null, 0, false));
|
||||||
|
|||||||
Reference in New Issue
Block a user