Reduce sales table column widths to prevent crowding

This commit is contained in:
2026-03-02 13:28:07 -07:00
parent 645b6c2bce
commit ccce10b9d6

View File

@@ -153,14 +153,14 @@
</HBox>
<TableView fx:id="tvSales" prefHeight="362.0" prefWidth="752.0" style="-fx-background-color: white; -fx-background-radius: 12;" VBox.vgrow="ALWAYS">
<columns>
<TableColumn fx:id="colSaleId" prefWidth="50.0" text="ID" />
<TableColumn fx:id="colSaleDate" prefWidth="150.0" text="Date" />
<TableColumn fx:id="colEmployeeName" prefWidth="180.0" text="Employee" />
<TableColumn fx:id="colServiceProduct" prefWidth="170.0" text="Product" />
<TableColumn fx:id="colSaleQuantity" prefWidth="80.0" text="Qty" />
<TableColumn fx:id="colSaleUnitPrice" prefWidth="100.0" text="Unit Price" />
<TableColumn fx:id="colSaleTotal" prefWidth="100.0" text="Total" />
<TableColumn fx:id="colSalePaymentType" prefWidth="120.0" text="Payment" />
<TableColumn fx:id="colSaleId" prefWidth="40.0" text="ID" />
<TableColumn fx:id="colSaleDate" prefWidth="130.0" text="Date" />
<TableColumn fx:id="colEmployeeName" prefWidth="140.0" text="Employee" />
<TableColumn fx:id="colServiceProduct" prefWidth="150.0" text="Product" />
<TableColumn fx:id="colSaleQuantity" prefWidth="50.0" text="Qty" />
<TableColumn fx:id="colSaleUnitPrice" prefWidth="90.0" text="Unit Price" />
<TableColumn fx:id="colSaleTotal" prefWidth="90.0" text="Total" />
<TableColumn fx:id="colSalePaymentType" prefWidth="90.0" text="Payment" />
</columns>
</TableView>
</children>