Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
GingerSoftLANInterconnection
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王宇航
GingerSoftLANInterconnection
Commits
f9223f43
Commit
f9223f43
authored
Aug 15, 2024
by
王宇航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.5
食品新增沽清id,RicePOS恢復沽清功能需要用到
parent
3366534d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletions
+20
-1
mylibrary/build.gradle.kts
+1
-1
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutFoodInfoBean.java
+13
-0
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutMsgBean.kt
+6
-0
No files found.
mylibrary/build.gradle.kts
View file @
f9223f43
...
@@ -55,7 +55,7 @@ afterEvaluate {
...
@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
groupId = "com.gingersoft.connect"
artifactId = "Connect"
artifactId = "Connect"
version = "1.7.
4
"
version = "1.7.
5
"
// 添加 POM 配置
// 添加 POM 配置
// pom {
// pom {
// name.set("GingerSoftConnect")
// name.set("GingerSoftConnect")
...
...
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutFoodInfoBean.java
View file @
f9223f43
...
@@ -35,6 +35,11 @@ public class SoldOutFoodInfoBean extends SendMsgType {
...
@@ -35,6 +35,11 @@ public class SoldOutFoodInfoBean extends SendMsgType {
*/
*/
private
String
parentId
;
private
String
parentId
;
/**
* 沽清id,某些系統沽清後,會單獨生成沽清記錄,需要通過這個id去操作沽清
*/
private
String
soldOutId
;
private
String
bgColor
;
private
String
bgColor
;
private
String
fontColor
;
private
String
fontColor
;
...
@@ -87,6 +92,14 @@ public class SoldOutFoodInfoBean extends SendMsgType {
...
@@ -87,6 +92,14 @@ public class SoldOutFoodInfoBean extends SendMsgType {
this
.
parentId
=
parentId
;
this
.
parentId
=
parentId
;
}
}
public
String
getSoldOutId
()
{
return
soldOutId
;
}
public
void
setSoldOutId
(
String
soldOutId
)
{
this
.
soldOutId
=
soldOutId
;
}
public
String
getBgColor
()
{
public
String
getBgColor
()
{
return
bgColor
;
return
bgColor
;
}
}
...
...
mylibrary/src/main/java/com/gingersoft/connect/bean/SoldOutMsgBean.kt
View file @
f9223f43
...
@@ -41,4 +41,9 @@ class SoldOutMsgBean : SendMsgType() {
...
@@ -41,4 +41,9 @@ class SoldOutMsgBean : SendMsgType() {
* 如果是組,並且為0,就是暫停
* 如果是組,並且為0,就是暫停
*/
*/
var
inventoryQuantity
:
String
?
=
null
var
inventoryQuantity
:
String
?
=
null
/**
* 沽清id,某些系統沽清後,會單獨生成沽清記錄,需要通過這個id去操作沽清
*/
var
soldOutId
:
String
?
=
null
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment