订单 打印票

This commit is contained in:
2025-02-26 17:51:21 +08:00
parent c82895d1e3
commit 92d9af40d5
3 changed files with 3 additions and 73 deletions

View File

@@ -39,6 +39,9 @@ public class RabbitPublisher {
* @param orderId 订单id
*/
public void sendOrderPrintMsg(String orderId) {
//厨房票
sendMsg(RabbitConstants.Queue.ORDER_MACHINE_PRINT_QUEUE, orderId);
//前台票
sendMsg(RabbitConstants.Queue.ORDER_PRINT_QUEUE, orderId);
}