Files
contract-manager/client/src/main/resources/ui/contract/purchase-orders-tab-bill-voucher.fxml
2025-09-03 20:56:44 +08:00

38 lines
2.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0"
xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="com.ecep.contract.manager.ds.contract.controller.purchase_order.PurchaseOrderTabSkinBillVoucher">
<children>
<HBox spacing="3.0">
<children>
<Button mnemonicParsing="false" text="Todo"/>
</children>
<padding>
<Insets bottom="10.0" left="7.0" right="10.0" top="10.0"/>
</padding>
</HBox>
<TableView fx:id="table" layoutX="48.0" layoutY="26.0" prefHeight="487.0" prefWidth="900.0"
AnchorPane.bottomAnchor="5.0" AnchorPane.leftAnchor="5.0" AnchorPane.rightAnchor="5.0"
AnchorPane.topAnchor="42.0">
<columns>
<TableColumn fx:id="idColumn" editable="false" maxWidth="75.0" minWidth="50.0"
prefWidth="75.0" text="ID"/>
<TableColumn fx:id="refIdColumn" editable="false" prefWidth="120.0" text="SBVID" visible="false"/>
<TableColumn fx:id="codeColumn" editable="false" maxWidth="300.0" minWidth="60.0"
prefWidth="120.0" text="Code"/>
<TableColumn fx:id="invoiceColumn" prefWidth="90.0" text="发票"/>
<TableColumn fx:id="employeeColumn" prefWidth="90.0" text="业务员"/>
<TableColumn fx:id="makerColumn" prefWidth="90.0" text="制单人"/>
<TableColumn fx:id="verifierColumn" prefWidth="90.0" text="审核人"/>
<TableColumn fx:id="makerDateColumn" prefWidth="130.0" text="制单日期"/>
<TableColumn fx:id="modifyDateColumn" prefWidth="130.0" text="修改日期"/>
<TableColumn fx:id="verifierDateColumn" prefWidth="130.0" text="审核日期"/>
<TableColumn fx:id="descriptionColumn" prefWidth="180.0" text="备注"/>
</columns>
</TableView>
</children>
</AnchorPane>