Commit f9223f43 by 王宇航

1.7.5

食品新增沽清id,RicePOS恢復沽清功能需要用到
parent 3366534d
......@@ -55,7 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.7.4"
version = "1.7.5"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
......
......@@ -35,6 +35,11 @@ public class SoldOutFoodInfoBean extends SendMsgType {
*/
private String parentId;
/**
* 沽清id,某些系統沽清後,會單獨生成沽清記錄,需要通過這個id去操作沽清
*/
private String soldOutId;
private String bgColor;
private String fontColor;
......@@ -87,6 +92,14 @@ public class SoldOutFoodInfoBean extends SendMsgType {
this.parentId = parentId;
}
public String getSoldOutId() {
return soldOutId;
}
public void setSoldOutId(String soldOutId) {
this.soldOutId = soldOutId;
}
public String getBgColor() {
return bgColor;
}
......
......@@ -41,4 +41,9 @@ class SoldOutMsgBean : SendMsgType() {
* 如果是組,並且為0,就是暫停
*/
var inventoryQuantity: String? = null
/**
* 沽清id,某些系統沽清後,會單獨生成沽清記錄,需要通過這個id去操作沽清
*/
var soldOutId: String? = null
}
\ No newline at end of file
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