print payment

This commit is contained in:
efrilm
2025-11-07 17:08:57 +07:00
parent d78b6165c2
commit af182b6f5a
8 changed files with 314 additions and 105 deletions
@@ -3,5 +3,6 @@ part of 'print_struck_bloc.dart';
@freezed
class PrintStruckEvent with _$PrintStruckEvent {
const factory PrintStruckEvent.order(Order order) = _Order;
const factory PrintStruckEvent.receipt(Order order) = _Receipt;
const factory PrintStruckEvent.cashier(Order order) = _Cashier;
const factory PrintStruckEvent.payment(Order order) = _Payment;
}