Browse Source

update stockinlinem18

master
CANCERYS\kw093 2 days ago
parent
commit
84810792ae
2 changed files with 7 additions and 0 deletions
  1. +2
    -0
      src/main/java/com/ffii/fpsms/modules/stock/entity/StockInLine.kt
  2. +5
    -0
      src/main/resources/db/changelog/changes/20260319_01_Enson/01_alter_stock_in_line.sql

+ 2
- 0
src/main/java/com/ffii/fpsms/modules/stock/entity/StockInLine.kt View File

@@ -62,6 +62,8 @@ open class StockInLine : BaseEntity<Long>() {
@Column(name = "acceptedQty", precision = 14, scale = 2)
open var acceptedQty: BigDecimal? = null

@Column(name = "acceptedQtyM18")
open var acceptedQtyM18: Int? = null
@Column(name = "price", precision = 14, scale = 2)
open var price: BigDecimal? = null



+ 5
- 0
src/main/resources/db/changelog/changes/20260319_01_Enson/01_alter_stock_in_line.sql View File

@@ -0,0 +1,5 @@
-- liquibase formatted sql
-- changeset KelvinY:alter_stock_in_line_accepted_qty_m18

ALTER TABLE `fpsmsdb`.`stock_in_line`
ADD COLUMN `acceptedQtyM18` INT NULL AFTER `acceptedQty`;

Loading…
Cancel
Save