| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067 |
- import 'dart:async';
- import 'package:flutter/material.dart';
- import 'package:flutter/services.dart';
- import 'package:flutter_riverpod/flutter_riverpod.dart';
- import 'package:go_router/go_router.dart';
- import 'package:tdesign_flutter/tdesign_flutter.dart';
- import '../../core/i18n/app_localizations.dart';
- import '../../core/navigation/host_app_channel.dart';
- import '../../shared/widgets/action_bar.dart';
- import '../../shared/widgets/loading_dialog.dart';
- import '../../shared/widgets/form_section.dart';
- import '../../shared/widgets/form_field_row.dart';
- import '../../shared/widgets/app_skeletons.dart';
- import '../../shared/widgets/nav_bar_config.dart';
- import '../../shared/helpers/audit_flow_helper.dart';
- import '../../core/theme/app_colors.dart';
- import '../../core/theme/app_colors_extension.dart';
- import 'overtime_apply_api.dart';
- import 'widgets/overtime_apply_detail_dialog.dart';
- import '../../shared/widgets/searchable_picker_sheet.dart';
- import '../expense_apply/expense_apply_api.dart';
- class OvertimeApplyEditPage extends ConsumerStatefulWidget {
- final String billNo;
- const OvertimeApplyEditPage({super.key, required this.billNo});
- @override
- ConsumerState<OvertimeApplyEditPage> createState() =>
- _OvertimeApplyEditPageState();
- }
- class _OvertimeApplyEditPageState extends ConsumerState<OvertimeApplyEditPage> {
- // ── 原单数据 ──
- String _billNo = '';
- String _applyDate = '';
- // ── 基本信息 ──
- final _reasonController = TextEditingController();
- final _reasonFocus = FocusNode();
- final _remarkController = TextEditingController();
- final _remarkFocus = FocusNode();
- final _scrollCtrl = ScrollController();
- // ── 加班明细 ──
- final List<_DetailItem> _details = [];
- int _detailIdCounter = 1;
- // ── 参考数据(从 API 加载) ──
- bool _firstBuild = true;
- bool _refDataLoading = true;
- bool _loadingBill = true;
- String? _loadingError;
- bool _addingDetail = false;
- // ── 申请部门 ──
- String _selectedDeptId = '';
- String _selectedDeptName = '';
- // ── 申请人 ──
- String _selectedApplicantId = '';
- String _selectedApplicantName = '';
- List<EmployeeItem> _employees = [];
- @override
- void initState() {
- super.initState();
- SystemChrome.setSystemUIOverlayStyle(
- const SystemUiOverlayStyle(
- statusBarColor: Colors.transparent,
- statusBarIconBrightness: Brightness.dark,
- ),
- );
- _reasonFocus.addListener(() => _ensureVisible(_reasonFocus));
- _remarkFocus.addListener(() => _ensureVisible(_remarkFocus));
- _refDataLoading = true;
- _loadingBill = true;
- _loadRefData();
- _loadBillData();
- WidgetsBinding.instance.addPostFrameCallback((_) => _checkDataReady());
- }
- void _checkDataReady() {
- if (!_refDataLoading && !_loadingBill && mounted) {
- setState(() => _firstBuild = false);
- WidgetsBinding.instance.addPostFrameCallback((_) {
- if (mounted) setState(() {});
- });
- } else if (mounted) {
- WidgetsBinding.instance.addPostFrameCallback((_) => _checkDataReady());
- }
- }
- Future<void>? _refDataFuture;
- Future<void> _loadRefData({bool showLoading = false}) async {
- if (_refDataFuture != null) return _refDataFuture!;
- final completer = Completer<void>();
- _refDataFuture = completer.future;
- if (showLoading) {
- LoadingDialog.show(
- context,
- text: AppLocalizations.of(context).get('dataLoading'),
- );
- }
- try {
- final api = ref.read(overtimeApplyApiProvider);
- final results = await Future.wait([
- api.getDepartments(),
- api.getEmployees(),
- ]);
- if (!mounted) return;
- setState(() {
- _employees = results[1] as List<EmployeeItem>;
- _refDataLoading = false;
- _autoSelectApplicant();
- });
- completer.complete();
- } catch (_) {
- if (!mounted) {
- completer.complete();
- return;
- }
- setState(() => _refDataLoading = false);
- completer.complete();
- } finally {
- if (showLoading && mounted) LoadingDialog.hide(context);
- _refDataFuture = null;
- }
- }
- Future<void> _loadBillData() async {
- try {
- final api = ref.read(overtimeApplyApiProvider);
- final detail = await api.fetchDetail(widget.billNo);
- if (!mounted) return;
- final n = detail.jbDd ?? DateTime.now();
- final applyDate =
- '${n.year}-${n.month.toString().padLeft(2, '0')}-${n.day.toString().padLeft(2, '0')}';
- setState(() {
- _billNo = detail.jbNo;
- _applyDate = applyDate;
- _selectedDeptId = detail.dep;
- _selectedDeptName = detail.depName;
- _selectedApplicantId = detail.salNo;
- _selectedApplicantName = detail.salName;
- _reasonController.text = detail.reason;
- _remarkController.text = detail.rem;
- // 加班明细回填
- _details.clear();
- _detailIdCounter = 1;
- for (final d in detail.details) {
- String jbDateStr = '';
- String startTimeStr = '';
- String endTimeStr = '';
- if (d.jbDate != null) {
- final s = d.jbDate!;
- jbDateStr =
- '${s.year}-${s.month.toString().padLeft(2, '0')}-${s.day.toString().padLeft(2, '0')}';
- }
- if (d.startTime != null) {
- final st = d.startTime!;
- startTimeStr =
- '${st.year}-${st.month.toString().padLeft(2, '0')}-${st.day.toString().padLeft(2, '0')} '
- '${st.hour.toString().padLeft(2, '0')}:${st.minute.toString().padLeft(2, '0')}';
- }
- if (d.endTime != null) {
- final et = d.endTime!;
- endTimeStr =
- '${et.year}-${et.month.toString().padLeft(2, '0')}-${et.day.toString().padLeft(2, '0')} '
- '${et.hour.toString().padLeft(2, '0')}:${et.minute.toString().padLeft(2, '0')}';
- }
- _details.add(
- _DetailItem(
- id: _detailIdCounter++,
- jbNo: d.jbNo,
- itm: d.itm,
- salNo: d.salNo,
- salName: d.salName,
- dep: d.dep,
- depName: d.depName,
- jbType: d.jbType,
- jbDate: jbDateStr,
- startTime: startTimeStr,
- endTime: endTimeStr,
- jbHours: d.jbHours,
- jbDays: d.jbDays,
- attPeriod: d.attPeriod,
- reason: d.reason,
- compensationType: d.compensationType,
- compensationCount: d.compensationCount,
- adr: d.adr,
- rem: d.rem,
- preItm: d.itm > 0 ? d.itm : null,
- ),
- );
- }
- _loadingBill = false;
- });
- } catch (e) {
- if (!mounted) return;
- setState(() {
- _loadingBill = false;
- _loadingError = e.toString();
- });
- }
- }
- void _autoSelectApplicant() {
- if (_selectedApplicantId.isNotEmpty) return;
- final usr = HostAppChannel.usr;
- if (usr.isEmpty) return;
- final match = _employees.where((e) => e.salNo == usr);
- if (match.isNotEmpty) {
- _selectedApplicantId = match.first.salNo;
- _selectedApplicantName = match.first.name;
- }
- }
- Future<void> _showApplicantPicker() async {
- FocusScope.of(context).unfocus();
- FocusManager.instance.primaryFocus?.unfocus();
- final l10n = AppLocalizations.of(context);
- final api = ref.read(overtimeApplyApiProvider);
- final result = await showSearchablePicker<EmployeeItem>(
- context,
- title: '${l10n.get('select')}${l10n.get('applicant')}',
- searchHint: l10n.get('search'),
- loader: (keyword, page) =>
- api.getEmployees(keyword: keyword, page: page, size: 20),
- labelBuilder: (e) => e.name.isEmpty ? e.salNo : '${e.salNo} ${e.name}',
- );
- if (result != null && mounted) {
- setState(() {
- _selectedApplicantId = result.salNo;
- _selectedApplicantName = result.name;
- });
- }
- }
- void _ensureVisible(FocusNode node) {
- if (!node.hasFocus) return;
- WidgetsBinding.instance.addPostFrameCallback((_) {
- if (node.hasFocus && _scrollCtrl.hasClients) {
- final ctx = node.context;
- if (ctx != null) {
- Scrollable.ensureVisible(
- ctx,
- alignment: 0.3,
- duration: const Duration(milliseconds: 300),
- );
- }
- }
- });
- }
- @override
- void dispose() {
- _reasonController.dispose();
- _reasonFocus.dispose();
- _remarkController.dispose();
- _remarkFocus.dispose();
- _scrollCtrl.dispose();
- super.dispose();
- }
- @override
- Widget build(BuildContext context) {
- final l10n = AppLocalizations.of(context);
- final colors = Theme.of(context).extension<AppColorsExtension>()!;
- if (_loadingError != null) {
- return Center(
- child: Column(
- mainAxisSize: MainAxisSize.min,
- children: [
- Icon(Icons.error_outline, size: 48, color: colors.danger),
- const SizedBox(height: 16),
- Padding(
- padding: const EdgeInsets.symmetric(horizontal: 32),
- child: Text(
- _loadingError!,
- textAlign: TextAlign.center,
- style: TextStyle(
- fontSize: AppFontSizes.body,
- color: colors.textSecondary,
- ),
- ),
- ),
- const SizedBox(height: 16),
- TDButton(
- text: l10n.get('retry'),
- size: TDButtonSize.medium,
- onTap: () {
- setState(() {
- _loadingError = null;
- _loadingBill = true;
- });
- _loadBillData();
- },
- ),
- ],
- ),
- );
- }
- if (_firstBuild) {
- return const SkeletonFormPage(sectionRows: [5, 3], bottomButtonCount: 1);
- }
- Future.microtask(
- () => ref.read(pageBackProvider.notifier).state = () => _doPop(),
- );
- return PopScope(
- canPop: false,
- onPopInvokedWithResult: (didPop, _) {
- if (didPop) return;
- _doPop();
- },
- child: Column(
- children: [
- Expanded(
- child: GestureDetector(
- onTap: () => FocusScope.of(context).unfocus(),
- child: SingleChildScrollView(
- controller: _scrollCtrl,
- padding: const EdgeInsets.all(16),
- child: Column(
- children: [
- _buildBasicInfo(l10n),
- const SizedBox(height: 16),
- _buildDetailsSection(l10n),
- const SizedBox(height: 24),
- _buildPageFooter(),
- ],
- ),
- ),
- ),
- ),
- _buildBottomBar(l10n),
- ],
- ),
- );
- }
- // ═══ 1. 基本信息 ═══
- Widget _buildBasicInfo(AppLocalizations l10n) {
- final colors = Theme.of(context).extension<AppColorsExtension>()!;
- return FormSection(
- title: l10n.get('basicInfo'),
- leadingIcon: Icons.info_outline,
- children: [
- FormFieldRow(
- label: l10n.get('overtimeApplyNo'),
- value: _billNo,
- readOnly: true,
- showArrow: false,
- ),
- const SizedBox(height: 16),
- FormFieldRow(
- label: l10n.get('date'),
- value: _applyDate,
- readOnly: true,
- showArrow: false,
- ),
- const SizedBox(height: 16),
- FormFieldRow(
- label: l10n.get('dep'),
- value: _selectedDeptId.isNotEmpty
- ? '$_selectedDeptId/$_selectedDeptName'
- : '',
- hint: l10n.get('pleaseSelect'),
- onTap: _refDataLoading ? null : () => _showDeptPicker(),
- ),
- const SizedBox(height: 16),
- FormFieldRow(
- label: l10n.get('applicant'),
- required: true,
- value: _selectedApplicantId.isNotEmpty
- ? '$_selectedApplicantId/$_selectedApplicantName'
- : '',
- hint: l10n.get('pleaseSelect'),
- onTap: () => _showApplicantPicker(),
- ),
- const SizedBox(height: 16),
- _label(l10n.get('overtimeReason'), required: true),
- const SizedBox(height: 8),
- TDTextarea(
- controller: _reasonController,
- focusNode: _reasonFocus,
- hintText: l10n.get('enterOvertimeReason'),
- maxLines: 4,
- minLines: 1,
- maxLength: 1000,
- indicator: true,
- padding: EdgeInsets.zero,
- bordered: true,
- backgroundColor: colors.bgPage,
- ),
- const SizedBox(height: 16),
- _label(l10n.get('remark')),
- const SizedBox(height: 8),
- TDTextarea(
- controller: _remarkController,
- focusNode: _remarkFocus,
- hintText: l10n.get('enterRemark'),
- maxLines: 3,
- minLines: 1,
- maxLength: 500,
- indicator: true,
- padding: EdgeInsets.zero,
- bordered: true,
- backgroundColor: colors.bgPage,
- ),
- ],
- );
- }
- // ═══ 2. 加班明细 ═══
- Widget _buildDetailsSection(AppLocalizations l10n) {
- final colors = Theme.of(context).extension<AppColorsExtension>()!;
- return FormSection(
- title: l10n.get('overtimeDetails'),
- leadingIcon: Icons.access_time_outlined,
- showAction: true,
- actionText: l10n.get('add'),
- onActionTap: _showDetailDialog,
- children: [
- if (_details.isEmpty)
- Padding(
- padding: const EdgeInsets.symmetric(vertical: 8),
- child: Text(
- l10n.get('noDetailHint'),
- style: TextStyle(
- fontSize: AppFontSizes.subtitle,
- color: colors.textPlaceholder,
- ),
- ),
- )
- else
- ..._details.asMap().entries.map((e) {
- final d = e.value;
- return GestureDetector(
- onTap: () => _showDetailDialog(editIndex: e.key),
- child: Container(
- margin: const EdgeInsets.symmetric(vertical: 6),
- padding: const EdgeInsets.all(12),
- decoration: BoxDecoration(
- color: colors.bgPage,
- borderRadius: BorderRadius.circular(8),
- ),
- child: Row(
- children: [
- Expanded(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Row(
- children: [
- Expanded(
- child: Text(
- '${d.salNo}${d.salName.isNotEmpty ? '/${d.salName}' : ''}',
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- style: TextStyle(
- fontSize: AppFontSizes.body,
- fontWeight: FontWeight.w500,
- color: colors.textPrimary,
- ),
- ),
- ),
- Text(
- '${d.jbHours.toStringAsFixed(1)}${l10n.get('hours')}',
- style: TextStyle(
- fontSize: AppFontSizes.body,
- fontWeight: FontWeight.w600,
- color: colors.timePrimary,
- ),
- ),
- ],
- ),
- if (d.jbType.isNotEmpty) ...[
- const SizedBox(height: 2),
- _detailLabel(
- '${l10n.get('jbType')}: ${_jbTypeLabel(d.jbType, l10n)}',
- colors,
- ),
- _detailLabel(
- '${l10n.get('applyDate')}: ${d.jbDate}',
- colors,
- ),
- ],
- if (d.startTime.isNotEmpty) ...[
- const SizedBox(height: 2),
- Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Expanded(
- child: _detailLabel(
- '${l10n.get('startTime')}: ${d.startTime}',
- colors,
- ),
- ),
- if (_dayOfWeekLabel(d.startTime, l10n) != null)
- _dayOfWeekTag(
- _dayOfWeekLabel(d.startTime, l10n)!,
- ),
- ],
- ),
- ],
- if (d.endTime.isNotEmpty) ...[
- const SizedBox(height: 2),
- Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Expanded(
- child: _detailLabel(
- '${l10n.get('endTime')}: ${d.endTime}',
- colors,
- ),
- ),
- if (_dayOfWeekLabel(d.endTime, l10n) != null)
- _dayOfWeekTag(
- _dayOfWeekLabel(d.endTime, l10n)!,
- ),
- ],
- ),
- ],
- if (d.jbDays > 0) ...[
- const SizedBox(height: 2),
- _detailLabel(
- '${l10n.get('overtimeDays')}: ${d.jbDays.toStringAsFixed(1)}',
- colors,
- ),
- ],
- if (d.attPeriod.isNotEmpty) ...[
- const SizedBox(height: 2),
- _detailLabel(
- '${l10n.get('attPeriod')}: ${d.attPeriod}',
- colors,
- ),
- ],
- if (d.compensationType.isNotEmpty) ...[
- const SizedBox(height: 2),
- _detailLabel(
- '${l10n.get('compensationType')}: ${_compensationTypeLabel(d.compensationType, l10n)}',
- colors,
- ),
- if (d.compensationType != 'NO_COMPENSATION' &&
- d.compensationCount > 0)
- _detailLabel(
- '${l10n.get('compensationCount')}: ${d.compensationCount.toStringAsFixed(1)}',
- colors,
- ),
- ],
- if (d.adr.isNotEmpty) ...[
- const SizedBox(height: 2),
- _detailLabel(
- '${l10n.get('adr')}: ${d.adr}',
- colors,
- ),
- ],
- if (d.reason.isNotEmpty) ...[
- const SizedBox(height: 2),
- _detailLabel(
- '${l10n.get('overtimeDetailReason')}: ${d.reason}',
- colors,
- ),
- ],
- if (d.rem.isNotEmpty) ...[
- const SizedBox(height: 2),
- _detailLabel(
- '${l10n.get('remark')}: ${d.rem}',
- colors,
- ),
- ],
- ],
- ),
- ),
- const SizedBox(width: 8),
- GestureDetector(
- onTap: () => setState(() => _details.removeAt(e.key)),
- child: Icon(
- Icons.close,
- size: 18,
- color: colors.textSecondary,
- ),
- ),
- ],
- ),
- ),
- );
- }),
- const SizedBox(height: 8),
- Container(
- padding: const EdgeInsets.symmetric(vertical: 8),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text(
- l10n.get('totalOvertimeHours'),
- style: TextStyle(
- fontSize: AppFontSizes.body,
- fontWeight: FontWeight.w600,
- color: colors.textPrimary,
- ),
- ),
- Text(
- '${_totalHours().toStringAsFixed(1)}${l10n.get('hours')}',
- style: TextStyle(
- fontSize: AppFontSizes.subtitle,
- fontWeight: FontWeight.w700,
- color: colors.timePrimary,
- ),
- ),
- ],
- ),
- ),
- ],
- );
- }
- double _totalHours() => _details.fold(0.0, (s, d) => s + d.jbHours);
- String _jbTypeLabel(String type, AppLocalizations l10n) {
- switch (type) {
- case 'WORKING_DAY':
- return l10n.get('workingDay');
- case 'REST_DAY':
- return l10n.get('restDay');
- case 'PUBLIC_HOLIDAY':
- return l10n.get('publicHoliday');
- case 'SPECIAL_HOLIDAY':
- return l10n.get('specialHoliday');
- case 'OTHER':
- return l10n.get('other');
- default:
- return type;
- }
- }
- String? _dayOfWeekLabel(String dateTimeStr, AppLocalizations l10n) {
- final dt = DateTime.tryParse(dateTimeStr);
- if (dt == null) return null;
- switch (dt.weekday) {
- case 1:
- return l10n.get('monday');
- case 2:
- return l10n.get('tuesday');
- case 3:
- return l10n.get('wednesday');
- case 4:
- return l10n.get('thursday');
- case 5:
- return l10n.get('friday');
- case 6:
- return l10n.get('saturday');
- case 7:
- return l10n.get('sunday');
- default:
- return null;
- }
- }
- String _compensationTypeLabel(String type, AppLocalizations l10n) {
- switch (type) {
- case 'OVERTIME_PAY':
- return l10n.get('overtimePay');
- case 'COMPENSATORY_LEAVE':
- return l10n.get('compensatoryLeave');
- case 'NO_COMPENSATION':
- return l10n.get('noCompensation');
- case 'OTHER':
- return l10n.get('other');
- default:
- return type;
- }
- }
- Widget _detailLabel(String text, AppColorsExtension colors) {
- return Padding(
- padding: const EdgeInsets.only(top: 2),
- child: Text(
- text,
- maxLines: 2,
- overflow: TextOverflow.ellipsis,
- style: TextStyle(
- fontSize: AppFontSizes.caption,
- color: colors.textSecondary,
- ),
- ),
- );
- }
- Widget _dayOfWeekTag(String label) {
- final tdTheme = TDTheme.of(context);
- return Container(
- padding: const EdgeInsets.symmetric(horizontal: 6),
- decoration: BoxDecoration(
- color: tdTheme.brandColor1,
- borderRadius: BorderRadius.circular(4),
- ),
- child: TDText(
- label,
- font: tdTheme.fontBodySmall,
- fontWeight: FontWeight.w500,
- textColor: tdTheme.brandColor7,
- ),
- );
- }
- Future<void> _showDetailDialog({int? editIndex}) async {
- if (_addingDetail) return;
- _addingDetail = true;
- try {
- final l10n = AppLocalizations.of(context);
- OvertimeDetailData? initialData;
- if (editIndex != null) {
- final d = _details[editIndex];
- initialData = OvertimeDetailData(
- jbNo: d.jbNo,
- itm: d.itm > 0 ? d.itm : null,
- salNo: d.salNo,
- salName: d.salName,
- dep: d.dep,
- depName: d.depName,
- jbType: d.jbType,
- jbDate: d.jbDate,
- startTime: d.startTime,
- endTime: d.endTime,
- jbHours: d.jbHours,
- jbDays: d.jbDays,
- attPeriod: d.attPeriod,
- reason: d.reason,
- compensationType: d.compensationType,
- compensationCount: d.compensationCount,
- adr: d.adr,
- rem: d.rem,
- );
- }
- FocusManager.instance.primaryFocus?.unfocus();
- final result = await OvertimeApplyDetailDialog.show(
- // ignore: use_build_context_synchronously
- context,
- api: ref.read(overtimeApplyApiProvider),
- l10n: l10n,
- initialData: initialData,
- );
- if (result != null && mounted) {
- setState(() {
- final item = _DetailItem(
- id: editIndex != null ? _details[editIndex].id : _detailIdCounter++,
- jbNo: result.jbNo,
- itm: result.itm ?? 0,
- salNo: result.salNo,
- salName: result.salName,
- dep: result.dep,
- depName: result.depName,
- jbType: result.jbType,
- jbDate: result.jbDate,
- startTime: result.startTime,
- endTime: result.endTime,
- jbHours: result.jbHours,
- jbDays: result.jbDays,
- attPeriod: result.attPeriod,
- reason: result.reason,
- compensationType: result.compensationType,
- compensationCount: result.compensationCount,
- adr: result.adr,
- rem: result.rem,
- preItm: editIndex != null ? _details[editIndex].preItm : null,
- );
- if (editIndex != null) {
- _details[editIndex] = item;
- } else {
- _details.add(item);
- }
- });
- }
- } finally {
- _addingDetail = false;
- }
- }
- // ═══ 3. 底部操作栏 ═══
- Widget _buildBottomBar(AppLocalizations l10n) {
- return ActionBar(
- showLeft: false,
- showCenter: false,
- rightLabel: l10n.get('submit'),
- onRightTap: () async {
- final err = _validate(l10n);
- if (err.isNotEmpty) {
- TDToast.showText(err.first, context: context);
- return;
- }
- FocusScope.of(context).unfocus();
- LoadingDialog.show(context, text: l10n.get('submitting'));
- try {
- final data = _buildSubmitData();
- final api = ref.read(overtimeApplyApiProvider);
- final billNo = await api.submit(data);
- if (!mounted) return;
- LoadingDialog.hide(context);
- if (billNo != null) {
- final dd = data['HeadData']['JB_DD']?.toString() ?? '';
- await AuditFlowHelper.handle(
- context: context,
- l10n: l10n,
- getConfig: () => api.getBillAuditConfig('JB'),
- onShSubmit: () => api.shSubmit(bilNo: billNo, bilDd: dd),
- );
- }
- if (mounted) {
- TDToast.showSuccess(l10n.get('billModified'), context: context);
- GoRouter.of(context).go('/overtime-apply/list');
- }
- } catch (e) {
- if (mounted) LoadingDialog.hide(context);
- }
- },
- );
- }
- Map<String, dynamic> _buildSubmitData() {
- return {
- 'HeadData': {
- 'JB_NO': _billNo,
- 'JB_DD': _applyDate,
- 'SAL_NO': _selectedApplicantId.isNotEmpty
- ? _selectedApplicantId
- : HostAppChannel.usr,
- 'DEP': _selectedDeptId,
- 'REASON': _reasonController.text.trim(),
- 'REM': _remarkController.text,
- 'USR': HostAppChannel.usr,
- },
- 'BodyData1': _details.asMap().entries.map((e) {
- final d = e.value;
- final item = <String, dynamic>{
- 'ITM': e.key + 1,
- 'SAL_NO': d.salNo,
- 'DEP': d.dep.isNotEmpty ? d.dep : _selectedDeptId,
- 'JB_TYPE': d.jbType,
- 'JB_DATE': d.jbDate,
- 'START_TIME': d.startTime,
- 'END_TIME': d.endTime,
- 'JB_HOURS': d.jbHours,
- 'JB_DAYS': d.jbDays,
- 'ATT_PERIOD': d.attPeriod,
- 'REASON': d.reason,
- 'COMPENSATION_TYPE': d.compensationType,
- 'COMPENSATION_COUNT': d.compensationCount,
- 'ADR': d.adr,
- 'REM': d.rem,
- };
- if (d.preItm != null) {
- item['PRE_ITM'] = d.preItm;
- }
- return item;
- }).toList(),
- };
- }
- List<String> _validate(AppLocalizations l10n) {
- final e = <String>[];
- if (_reasonController.text.trim().isEmpty) {
- e.add(l10n.get('enterOvertimeReason'));
- }
- if (_details.isEmpty) e.add(l10n.get('addAtLeastOneOTDetail'));
- if (_selectedDeptId.isEmpty) e.add(l10n.get('selectDept'));
- if (_selectedApplicantId.isEmpty) e.add(l10n.get('selectApplicant'));
- return e;
- }
- void _doPop() {
- if (_hasUnsaved()) {
- final l10n = AppLocalizations.of(context);
- _showConfirmDialog(
- l10n.get('confirmExit'),
- l10n.get('unsavedContentWarning'),
- l10n.get('continueEditing'),
- l10n.get('discardAndExit'),
- () => _forcePop(),
- );
- } else {
- _forcePop();
- }
- }
- void _forcePop() {
- FocusManager.instance.primaryFocus?.unfocus();
- final router = GoRouter.of(context);
- if (router.canPop()) {
- router.pop();
- } else {
- SystemNavigator.pop();
- }
- }
- bool _hasUnsaved() =>
- _reasonController.text.isNotEmpty ||
- _details.isNotEmpty ||
- _remarkController.text.isNotEmpty;
- void _showConfirmDialog(
- String title,
- String content,
- String leftText,
- String rightText,
- VoidCallback onConfirm,
- ) {
- final colors = Theme.of(context).extension<AppColorsExtension>()!;
- showDialog(
- context: context,
- useRootNavigator: true,
- builder: (ctx) => TDAlertDialog(
- title: title,
- content: content,
- buttonStyle: TDDialogButtonStyle.text,
- leftBtn: TDDialogButtonOptions(
- title: leftText,
- titleColor: colors.primary,
- action: () => Navigator.pop(ctx),
- ),
- rightBtn: TDDialogButtonOptions(
- title: rightText,
- titleColor: colors.danger,
- action: () {
- Navigator.pop(ctx);
- onConfirm();
- },
- ),
- ),
- );
- }
- Widget _label(String t, {bool required = false}) {
- final colors = Theme.of(context).extension<AppColorsExtension>()!;
- return Text.rich(
- TextSpan(
- children: [
- TextSpan(
- text: t,
- style: TextStyle(
- fontSize: AppFontSizes.subtitle,
- color: colors.textSecondary,
- ),
- ),
- if (required)
- TextSpan(
- text: ' *',
- style: TextStyle(
- fontSize: AppFontSizes.subtitle,
- color: colors.danger,
- ),
- ),
- ],
- ),
- );
- }
- Widget _buildPageFooter() {
- final l10n = AppLocalizations.of(context);
- final colors = Theme.of(context).extension<AppColorsExtension>()!;
- return Center(
- child: Padding(
- padding: const EdgeInsets.only(bottom: 16),
- child: Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- Icon(
- Icons.rocket_launch_outlined,
- size: 16,
- color: colors.textPlaceholder,
- ),
- const SizedBox(width: 6),
- Text(
- l10n.get('pageFooter'),
- style: TextStyle(
- fontSize: AppFontSizes.caption,
- color: colors.textPlaceholder,
- ),
- ),
- ],
- ),
- ),
- );
- }
- Future<void> _showDeptPicker() async {
- FocusManager.instance.primaryFocus?.unfocus();
- final l10n = AppLocalizations.of(context);
- final api = ref.read(overtimeApplyApiProvider);
- final result = await showSearchablePicker<DepartmentItem>(
- context,
- title: '${l10n.get('select')}${l10n.get('applyDept')}',
- searchHint: l10n.get('search'),
- loader: (keyword, page) =>
- api.getDepartments(keyword: keyword, page: page, size: 20),
- labelBuilder: (d) => d.name.isEmpty ? d.dep : '${d.dep} ${d.name}',
- onRefresh: () => api.clearRefCache(),
- );
- if (result != null && mounted) {
- setState(() {
- _selectedDeptId = result.dep;
- _selectedDeptName = result.name;
- });
- }
- }
- }
- class _DetailItem {
- final int id;
- final String? jbNo;
- final int itm;
- final String salNo;
- final String salName;
- final String dep;
- final String depName;
- final String jbType;
- final String jbDate;
- final String startTime;
- final String endTime;
- final double jbHours;
- final double jbDays;
- final String attPeriod;
- final String reason;
- final String compensationType;
- final double compensationCount;
- final String adr;
- final String rem;
- final int? preItm;
- const _DetailItem({
- required this.id,
- this.jbNo,
- this.itm = 0,
- this.salNo = '',
- this.salName = '',
- this.dep = '',
- this.depName = '',
- this.jbType = 'WORKING_DAY',
- this.jbDate = '',
- this.startTime = '',
- this.endTime = '',
- this.jbHours = 0.0,
- this.jbDays = 0.0,
- this.attPeriod = '',
- this.reason = '',
- this.compensationType = '',
- this.compensationCount = 0.0,
- this.adr = '',
- this.rem = '',
- this.preItm,
- });
- }
|