149 lines
4.7 KiB
Dart
149 lines
4.7 KiB
Dart
import 'package:enaklo_pos/core/components/buttons.dart';
|
|
import 'package:enaklo_pos/core/components/custom_modal_dialog.dart';
|
|
import 'package:enaklo_pos/core/components/custom_text_field.dart';
|
|
import 'package:enaklo_pos/core/components/flushbar.dart';
|
|
import 'package:enaklo_pos/core/components/spaces.dart';
|
|
import 'package:enaklo_pos/core/constants/colors.dart';
|
|
import 'package:enaklo_pos/core/extensions/build_context_ext.dart';
|
|
import 'package:enaklo_pos/core/extensions/string_ext.dart';
|
|
import 'package:enaklo_pos/data/models/response/order_response_model.dart';
|
|
import 'package:enaklo_pos/presentation/home/bloc/order_form/order_form_bloc.dart';
|
|
import 'package:enaklo_pos/presentation/sales/blocs/order_loader/order_loader_bloc.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
class RefundDialog extends StatefulWidget {
|
|
final Order order;
|
|
final List<OrderItem> selectedItems;
|
|
const RefundDialog(
|
|
{super.key, required this.order, required this.selectedItems});
|
|
|
|
@override
|
|
State<RefundDialog> createState() => _RefundDialogState();
|
|
}
|
|
|
|
class _RefundDialogState extends State<RefundDialog> {
|
|
final TextEditingController _reasonController = TextEditingController();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CustomModalDialog(
|
|
title: 'Refund',
|
|
subtitle: 'Pengembalian dana',
|
|
contentPadding:
|
|
const EdgeInsets.symmetric(horizontal: 16.0, vertical: 24.0),
|
|
child: Column(
|
|
children: [
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'Pesanan yang akan di refund',
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
color: AppColors.black,
|
|
),
|
|
),
|
|
SpaceHeight(12),
|
|
Column(
|
|
children: widget.selectedItems
|
|
.map((item) => _item(context, item))
|
|
.toList(),
|
|
),
|
|
],
|
|
),
|
|
SpaceHeight(16),
|
|
CustomTextField(
|
|
controller: _reasonController,
|
|
label: 'Alasan',
|
|
),
|
|
SpaceHeight(24),
|
|
BlocListener<OrderFormBloc, OrderFormState>(
|
|
listener: (context, state) {
|
|
state.maybeWhen(
|
|
orElse: () {},
|
|
successMsg: () {
|
|
context.pop();
|
|
AppFlushbar.showSuccess(context, 'Refund Berhasil!');
|
|
context
|
|
.read<OrderLoaderBloc>()
|
|
.add(OrderLoaderEvent.getByStatus('completed'));
|
|
},
|
|
error: (msg) {
|
|
AppFlushbar.showError(context, msg);
|
|
},
|
|
);
|
|
},
|
|
child: BlocBuilder<OrderFormBloc, OrderFormState>(
|
|
builder: (context, state) {
|
|
return state.maybeWhen(
|
|
orElse: () => Button.filled(
|
|
onPressed: () {
|
|
context.read<OrderFormBloc>().add(
|
|
OrderFormEvent.refund(
|
|
orderId: widget.order.id ?? '',
|
|
reason: _reasonController.text,
|
|
items: widget.selectedItems,
|
|
),
|
|
);
|
|
},
|
|
label: 'Refund',
|
|
),
|
|
loading: () => Center(
|
|
child: const CircularProgressIndicator(),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Row _item(
|
|
BuildContext context,
|
|
OrderItem product,
|
|
) {
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
SizedBox(
|
|
width: context.deviceWidth * 0.1,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
product.productName ?? '',
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
Text(
|
|
(product.unitPrice ?? 0).toString().currencyFormatRpV2,
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Text(
|
|
'X${product.quantity}',
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
Text(
|
|
(product.totalPrice ?? 0).toString().currencyFormatRpV2,
|
|
style: const TextStyle(
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|