fixbug 用户退款没有正常结束订单

This commit is contained in:
2023-12-31 18:40:56 +08:00
parent 4f66a360b6
commit e2ea3af576
7 changed files with 28 additions and 19 deletions

View File

@@ -21,7 +21,9 @@ public class TestCodeClick implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
logger.error("sending barcode msg to api =========" + barcode.getText());
ClientThread.getInstance().checkBarcode(barcode.getText());
String text = barcode.getText();
text = text.substring(1,text.length() -1);
logger.error("sending barcode msg to api =========" + text);
ClientThread.getInstance().checkBarcode(text);
}
}