退菜打票实现

This commit is contained in:
张松
2025-03-11 17:03:20 +08:00
parent da750a1b79
commit 3757d92cba
2 changed files with 17 additions and 1 deletions

View File

@@ -53,6 +53,15 @@ public class RabbitPublisher {
sendMsg(RabbitConstants.Queue.ORDER_PRINT_QUEUE, orderId);
}
/**
* 退款订单打印消息
* @param orderId 订单id
*/
public void sendOrderReturnPrintMsg(String orderId) {
//厨房票
sendMsg(RabbitConstants.Queue.ORDER_MACHINE_PRINT_QUEUE, orderId);
}
/**
* 交班小票打印消息
*