This website works better with JavaScript.
Home
Explore
Help
Sign In
derek
/
FPSMS-backend
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
bug fix
create_edit_user
MSI\derek
4 months ago
parent
9d65dd4e93
commit
a27a0f8b84
2 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOut.kt
+1
-0
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOutLine.kt
+ 1
- 1
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOut.kt
View File
@@ -9,7 +9,7 @@ import java.time.LocalDateTime
@Entity
@Table(name = "stock_out")
open class StockOut
: BaseEntity<Long>(){
open class StockOut: BaseEntity<Long>(){
@NotNull
@Column(name = "type")
open var type: String? = null
+ 1
- 0
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOutLine.kt
View File
@@ -19,6 +19,7 @@ open class StockOutLine: BaseEntity<Long>() {
open var qty: Double? = null
@NotNull
@ManyToOne
@JoinColumn(name = "stockOutId")
open var stockOut: StockOut? = null
Write
Preview
Loading…
Cancel
Save