61 lines
2.9 KiB
XML
61 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.TableColumn?>
|
|
<?import javafx.scene.control.TableView?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.text.Font?>
|
|
<?import javafx.scene.text.Text?>
|
|
|
|
<AnchorPane id="AnchorPane" prefHeight="487.0" prefWidth="734.0" xmlns="http://javafx.com/javafx/13" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controllers.ChequeClt.ChequeCltProvisionPrintController">
|
|
<children>
|
|
<Text layoutX="204.0" layoutY="22.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Liste des chèques sans provision">
|
|
<font>
|
|
<Font name="Arial Bold" size="20.0" />
|
|
</font>
|
|
</Text>
|
|
<HBox layoutX="14.0" layoutY="30.0" spacing="4.0">
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Nombre:">
|
|
<font>
|
|
<Font name="Arial" size="12.0" />
|
|
</font>
|
|
</Text>
|
|
<Text fx:id="TextNbr" strokeType="OUTSIDE" strokeWidth="0.0" text="----------">
|
|
<font>
|
|
<Font name="Arial" size="12.0" />
|
|
</font>
|
|
</Text>
|
|
</children>
|
|
</HBox>
|
|
<HBox layoutX="633.0" layoutY="31.0" spacing="4.0">
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Page:">
|
|
<font>
|
|
<Font name="Arial" size="12.0" />
|
|
</font>
|
|
</Text>
|
|
<Text fx:id="TextPage" strokeType="OUTSIDE" strokeWidth="0.0" text="-------">
|
|
<font>
|
|
<Font name="Arial" size="12.0" />
|
|
</font>
|
|
</Text>
|
|
</children>
|
|
</HBox>
|
|
<TableView fx:id="TableViewChequeCltProvision" editable="true" layoutY="54.0" prefHeight="433.0" prefWidth="734.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0">
|
|
<columns>
|
|
<TableColumn fx:id="TabColNumeroCheque" maxWidth="200.0" minWidth="85.0" prefWidth="85.0" text="Numéro" />
|
|
<TableColumn fx:id="TabColBanque" maxWidth="500.0" minWidth="90.0" prefWidth="90.0" text="Banque" />
|
|
<TableColumn fx:id="TabColDateCheque" maxWidth="100.0" minWidth="100.0" prefWidth="100.0" text="Date Chèque" />
|
|
<TableColumn fx:id="TabColMontant" maxWidth="500.0" minWidth="90.0" prefWidth="90.0" text="Montant" />
|
|
<TableColumn fx:id="TabColNomClt" maxWidth="500.0" minWidth="100.0" prefWidth="100.0" text="Nom" />
|
|
<TableColumn fx:id="TabColPrenomClt" maxWidth="500.0" minWidth="100.0" prefWidth="100.0" text="Prénom" />
|
|
<TableColumn fx:id="TabColLocal" maxWidth="120.0" minWidth="90.0" prefWidth="90.0" text="Magasin" />
|
|
</columns>
|
|
<columnResizePolicy>
|
|
<TableView fx:constant="CONSTRAINED_RESIZE_POLICY" />
|
|
</columnResizePolicy>
|
|
</TableView>
|
|
</children>
|
|
</AnchorPane>
|