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
5c2f9362
Commit
5c2f9362
authored
Jun 25, 2024
by
王宇航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.5.6
1、食品增加ktShowPrice是否打印價格 2、訂單增加kdsName,KDS在pos設備中的名稱
parent
1f552daa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
1 deletions
+27
-1
mylibrary/build.gradle.kts
+1
-1
mylibrary/src/main/java/com/gingersoft/connect/bean/FoodInfoBean.java
+13
-0
mylibrary/src/main/java/com/gingersoft/connect/bean/OrderInfoBean.java
+13
-0
No files found.
mylibrary/build.gradle.kts
View file @
5c2f9362
...
...
@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.5.
5
"
version = "1.5.
6
"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
...
...
mylibrary/src/main/java/com/gingersoft/connect/bean/FoodInfoBean.java
View file @
5c2f9362
...
...
@@ -26,6 +26,11 @@ public class FoodInfoBean {
*/
private
double
price
;
/**
* 是否需要打印價格
* 0: 不打印 1:打印
*/
private
int
ktShowPrice
;
/**
* 食品類型
*/
private
int
type
;
...
...
@@ -87,6 +92,14 @@ public class FoodInfoBean {
this
.
price
=
price
;
}
public
int
getKtShowPrice
()
{
return
ktShowPrice
;
}
public
void
setKtShowPrice
(
int
ktShowPrice
)
{
this
.
ktShowPrice
=
ktShowPrice
;
}
public
int
getType
()
{
return
this
.
type
;
}
...
...
mylibrary/src/main/java/com/gingersoft/connect/bean/OrderInfoBean.java
View file @
5c2f9362
...
...
@@ -61,6 +61,10 @@ public class OrderInfoBean implements SendMsgType {
*/
private
String
flyPrintInfo
;
/**
* kds在Pos設備中的名稱
*/
private
String
kdsName
;
/**
* 食品信息
*/
private
List
<
FoodInfoBean
>
foodInfoBeanList
;
...
...
@@ -176,6 +180,15 @@ public class OrderInfoBean implements SendMsgType {
public
void
setFlyPrintInfo
(
String
flyPrintInfo
)
{
this
.
flyPrintInfo
=
flyPrintInfo
;
}
public
String
getKdsName
()
{
return
kdsName
;
}
public
void
setKdsName
(
String
kdsName
)
{
this
.
kdsName
=
kdsName
;
}
public
List
<
FoodInfoBean
>
getFoodInfoBeanList
()
{
return
foodInfoBeanList
;
}
...
...
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