收银呗改为快银收银,部分调整

This commit is contained in:
liuyingfang
2023-05-08 11:00:47 +08:00
parent f8a583063f
commit 4a5bc0dd25
19 changed files with 87 additions and 38 deletions

View File

@@ -64,8 +64,8 @@ public class DeviceMerchantBuyDTO {
public Map<String, String> convert(String orderNo) {
Map<String, String> result = new HashMap<String, String>(16);
result.put("body", "收银商品订单支付");
result.put("subject", "收银商品订单支付");
result.put("body", "快银收银商品订单支付");
result.put("subject", "快银收银商品订单支付");
result.put("outTradeNo", orderNo);
result.put("totalAmount", orderAmount + "");
return result;

View File

@@ -32,7 +32,7 @@ public class DeviceOperateInfoVO extends DeviceOperateInfo {
public String getDesc() {
String type = this.getType();
if(DeviceOperateType.IN.getCode().equals(type)){
this.desc = "收银设备入库";
this.desc = "快银收银设备入库";
}
if(DeviceOperateType.TRANSFER.getCode().equals(type)){
this.desc = this.getRemark();

View File

@@ -50,7 +50,7 @@ public class DeviceTransferVO extends DeviceTransfer {
public String getUserName() {
if(StringUtil.isEmpty(this.userName)){
this.userName = "收银";
this.userName = "快银收银";
}
return userName;
}