拆分模块
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<?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.PurchaseOrderTabSkinItems">
|
||||
<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="itemTable" editable="true" 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="RefId" visible="false"/>
|
||||
<TableColumn fx:id="nameColumn" editable="false" minWidth="60.0"
|
||||
prefWidth="120.0" text="规格"/>
|
||||
<TableColumn fx:id="unitColumn" maxWidth="80.0" minWidth="40.0" prefWidth="60.0" text="单位"/>
|
||||
<TableColumn fx:id="itemTable_quantityColumn" maxWidth="120.0" minWidth="40.0" prefWidth="60.0"
|
||||
text="数量"/>
|
||||
<TableColumn fx:id="itemTable_taxPriceColumn" maxWidth="240.0" minWidth="50.0" prefWidth="70.0"
|
||||
text="含税单价"/>
|
||||
<TableColumn fx:id="itemTable_taxRateColumn" maxWidth="120.0" minWidth="40.0" prefWidth="60.0"
|
||||
text="税率"/>
|
||||
<TableColumn fx:id="itemTable_exclusiveTaxPriceColumn" maxWidth="240.0" minWidth="50.0"
|
||||
prefWidth="70.0" text="不含税单价"/>
|
||||
<TableColumn fx:id="itemTable_exclusiveTaxAmountColumn" maxWidth="240.0" minWidth="50.0"
|
||||
prefWidth="70.0" text="不含税小计"/>
|
||||
<TableColumn fx:id="itemTable_taxAmountColumn" maxWidth="240.0" minWidth="50.0"
|
||||
prefWidth="70.0" text="含税小计"/>
|
||||
<TableColumn fx:id="itemTable_arriveDateColumn" prefWidth="100.0"
|
||||
text="计划到货日期"/>
|
||||
<TableColumn fx:id="itemTable_descriptionColumn" maxWidth="500.0" minWidth="100.0" prefWidth="180.0"
|
||||
text="备注"/>
|
||||
</columns>
|
||||
</TableView>
|
||||
</children>
|
||||
</AnchorPane>
|
||||
Reference in New Issue
Block a user