refactor: 重构实体类equals和hashCode方法 fix: 修复WebSocketService消息发送逻辑 style: 格式化代码和优化导入 docs: 更新JacksonConfig日期序列化格式 test: 添加CompanyFilePathTableCell测试类 chore: 清理无用代码和注释
52 lines
3.3 KiB
XML
52 lines
3.3 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.controller.tab.ContractTabSkinItemsV2">
|
|
<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" prefWidth="75.0" text="ID"/>
|
|
<TableColumn fx:id="inventoryColumn" editable="false" prefWidth="90.0" text="存货编码"/>
|
|
<TableColumn fx:id="titleColumn" editable="false" prefWidth="150.0" text="项目"/>
|
|
<TableColumn fx:id="specificationColumn" editable="false" prefWidth="150.0" text="规格"/>
|
|
<TableColumn fx:id="unitColumn" prefWidth="60.0" text="单位" style="-fx-alignment: center;"/>
|
|
<TableColumn fx:id="quantityColumn" prefWidth="70.0" editable="false"
|
|
style="-fx-alignment: center-right;"
|
|
text="数量"/>
|
|
<TableColumn fx:id="exclusiveTaxPriceColumn" prefWidth="110.0" text="不含税单价"
|
|
style="-fx-alignment: center-right;"/>
|
|
<TableColumn fx:id="exclusiveTaxAmountColumn" prefWidth="130.0" style="-fx-alignment: center-right;"
|
|
text="不含税小计"/>
|
|
<TableColumn fx:id="taxRateColumn" prefWidth="60.0" text="税率" style="-fx-alignment: center-right;"/>
|
|
<TableColumn fx:id="taxPriceColumn" prefWidth="110.0" text="含税单价"
|
|
style="-fx-alignment: center-right;"/>
|
|
<TableColumn fx:id="taxAmountColumn" style="-fx-alignment: center-right;"
|
|
prefWidth="130.0" text="含税小计"/>
|
|
<TableColumn fx:id="refIdColumn" editable="false" prefWidth="75.0" text="RefId"/>
|
|
<TableColumn fx:id="codeColumn" editable="false" prefWidth="75.0" text="Code"/>
|
|
<TableColumn fx:id="startDateColumn" prefWidth="130.0" text="起始日期"/>
|
|
<TableColumn fx:id="endDateColumn" prefWidth="130.0" text="截止日期"/>
|
|
<TableColumn fx:id="creatorColumn" prefWidth="75.0" text="创建人"/>
|
|
<TableColumn fx:id="createDateColumn" prefWidth="130.0" text="创建时间"/>
|
|
<TableColumn fx:id="updaterColumn" prefWidth="75.0" text="更新人"/>
|
|
<TableColumn fx:id="updateDateColumn" prefWidth="130.0" text="更新时间"/>
|
|
<TableColumn fx:id="remarkColumn" maxWidth="500.0" minWidth="100.0" prefWidth="180.0"
|
|
text="备注"/>
|
|
</columns>
|
|
</TableView>
|
|
</children>
|
|
</AnchorPane> |