Commit 5c2f9362 by 王宇航

1.5.6

1、食品增加ktShowPrice是否打印價格
2、訂單增加kdsName,KDS在pos設備中的名稱
parent 1f552daa
...@@ -55,7 +55,7 @@ afterEvaluate { ...@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect" groupId = "com.gingersoft.connect"
artifactId = "Connect" artifactId = "Connect"
version = "1.5.5" version = "1.5.6"
// 添加 POM 配置 // 添加 POM 配置
// pom { // pom {
// name.set("GingerSoftConnect") // name.set("GingerSoftConnect")
......
...@@ -26,6 +26,11 @@ public class FoodInfoBean { ...@@ -26,6 +26,11 @@ public class FoodInfoBean {
*/ */
private double price; private double price;
/** /**
* 是否需要打印價格
* 0: 不打印 1:打印
*/
private int ktShowPrice;
/**
* 食品類型 * 食品類型
*/ */
private int type; private int type;
...@@ -87,6 +92,14 @@ public class FoodInfoBean { ...@@ -87,6 +92,14 @@ public class FoodInfoBean {
this.price = price; this.price = price;
} }
public int getKtShowPrice() {
return ktShowPrice;
}
public void setKtShowPrice(int ktShowPrice) {
this.ktShowPrice = ktShowPrice;
}
public int getType() { public int getType() {
return this.type; return this.type;
} }
......
...@@ -61,6 +61,10 @@ public class OrderInfoBean implements SendMsgType { ...@@ -61,6 +61,10 @@ public class OrderInfoBean implements SendMsgType {
*/ */
private String flyPrintInfo; private String flyPrintInfo;
/** /**
* kds在Pos設備中的名稱
*/
private String kdsName;
/**
* 食品信息 * 食品信息
*/ */
private List<FoodInfoBean> foodInfoBeanList; private List<FoodInfoBean> foodInfoBeanList;
...@@ -176,6 +180,15 @@ public class OrderInfoBean implements SendMsgType { ...@@ -176,6 +180,15 @@ public class OrderInfoBean implements SendMsgType {
public void setFlyPrintInfo(String flyPrintInfo) { public void setFlyPrintInfo(String flyPrintInfo) {
this.flyPrintInfo = flyPrintInfo; this.flyPrintInfo = flyPrintInfo;
} }
public String getKdsName() {
return kdsName;
}
public void setKdsName(String kdsName) {
this.kdsName = kdsName;
}
public List<FoodInfoBean> getFoodInfoBeanList() { public List<FoodInfoBean> getFoodInfoBeanList() {
return foodInfoBeanList; return foodInfoBeanList;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment