first commit
This commit is contained in:
191
lib/Screens/hrm/department/add_new_depertment.dart
Normal file
191
lib/Screens/hrm/department/add_new_depertment.dart
Normal file
@@ -0,0 +1,191 @@
|
||||
// File: add_edit_department.dart
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
|
||||
// --- Local Imports ---
|
||||
import 'package:mobile_pos/Screens/hrm/department/model/department_list_model.dart';
|
||||
import 'package:mobile_pos/Screens/hrm/department/repo/department_repo.dart';
|
||||
import 'package:mobile_pos/constant.dart';
|
||||
// Assuming DepartmentRepo is available via this path
|
||||
|
||||
class AddEditDepartment extends ConsumerStatefulWidget {
|
||||
final bool isEdit;
|
||||
final DepartmentData? department;
|
||||
|
||||
const AddEditDepartment({super.key, this.isEdit = false, this.department});
|
||||
|
||||
@override
|
||||
ConsumerState<AddEditDepartment> createState() => _AddEditDepartmentState();
|
||||
}
|
||||
|
||||
class _AddEditDepartmentState extends ConsumerState<AddEditDepartment> {
|
||||
final GlobalKey<FormState> _key = GlobalKey<FormState>();
|
||||
final TextEditingController nameController = TextEditingController();
|
||||
final TextEditingController descController = TextEditingController();
|
||||
|
||||
String? _selectedStatus; // UI state for dropdown
|
||||
|
||||
final List<String> _statusOptions = ['Active', 'Inactive'];
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
if (widget.isEdit && widget.department != null) {
|
||||
final data = widget.department!;
|
||||
nameController.text = data.name ?? '';
|
||||
descController.text = data.description ?? '';
|
||||
// Convert num status (1/0) to string status ('Active'/'Inactive')
|
||||
_selectedStatus = data.status.toString() == '1' || data.status.toString() == 'Active' ? 'Active' : 'Inactive';
|
||||
} else {
|
||||
_selectedStatus = 'Active'; // Default status for new entry
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
nameController.dispose();
|
||||
descController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
// --- Submission Logic ---
|
||||
Future<void> _submit() async {
|
||||
if (!_key.currentState!.validate()) {
|
||||
return;
|
||||
}
|
||||
|
||||
final repo = DepartmentRepo();
|
||||
// Convert selected string status to API required string "1" (Active) or "0" (Inactive)
|
||||
final String apiStatus = _selectedStatus == 'Active' ? '1' : '0';
|
||||
|
||||
EasyLoading.show(status: widget.isEdit ? 'Updating...' : 'Saving...');
|
||||
|
||||
if (widget.isEdit) {
|
||||
await repo.updateDepartment(
|
||||
ref: ref,
|
||||
context: context,
|
||||
|
||||
// Assuming ID is non-null when isEdit is true
|
||||
id: widget.department!.id!.round(),
|
||||
name: nameController.text,
|
||||
description: descController.text,
|
||||
status: apiStatus,
|
||||
);
|
||||
} else {
|
||||
await repo.createDepartment(
|
||||
ref: ref,
|
||||
context: context,
|
||||
name: nameController.text,
|
||||
description: descController.text,
|
||||
status: apiStatus,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// --- Reset Logic ---
|
||||
void _resetForm() {
|
||||
setState(() {
|
||||
_key.currentState?.reset();
|
||||
nameController.clear();
|
||||
descController.clear();
|
||||
_selectedStatus = 'Active';
|
||||
|
||||
// If editing, pressing reset should revert to original values
|
||||
if (widget.isEdit && widget.department != null) {
|
||||
final data = widget.department!;
|
||||
nameController.text = data.name ?? '';
|
||||
descController.text = data.description ?? '';
|
||||
_selectedStatus = data.status == '1' || data.status == 'Active' ? 'Active' : 'Inactive';
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
backgroundColor: Colors.white,
|
||||
appBar: AppBar(
|
||||
centerTitle: true,
|
||||
title: Text(widget.isEdit ? 'Edit Department' : 'Add Department'),
|
||||
),
|
||||
body: SingleChildScrollView(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Form(
|
||||
key: _key,
|
||||
child: Column(
|
||||
children: [
|
||||
// 1. Department Name
|
||||
TextFormField(
|
||||
controller: nameController,
|
||||
decoration: kInputDecoration.copyWith(
|
||||
labelText: 'Department Name',
|
||||
hintText: 'Enter Department Name',
|
||||
),
|
||||
validator: (value) => value!.isEmpty ? 'Please enter department name' : null,
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
|
||||
// 2. Status Dropdown
|
||||
DropdownButtonFormField<String>(
|
||||
value: _selectedStatus,
|
||||
icon: const Icon(Icons.keyboard_arrow_down, color: kNeutral800),
|
||||
decoration: kInputDecoration.copyWith(labelText: 'Status'),
|
||||
items: _statusOptions.map((String value) {
|
||||
return DropdownMenuItem(value: value, child: Text(value));
|
||||
}).toList(),
|
||||
onChanged: (String? newValue) {
|
||||
setState(() {
|
||||
_selectedStatus = newValue;
|
||||
});
|
||||
},
|
||||
validator: (value) => value == null ? 'Please select a status' : null,
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
|
||||
// 3. Description
|
||||
TextFormField(
|
||||
controller: descController,
|
||||
maxLines: 3,
|
||||
decoration: kInputDecoration.copyWith(
|
||||
labelText: 'Description',
|
||||
hintText: 'Enter Description',
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 12.0, vertical: 10.0),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 30),
|
||||
|
||||
// 4. Action Buttons (Reset/Save)
|
||||
Row(
|
||||
children: [
|
||||
// Reset Button
|
||||
Expanded(
|
||||
child: OutlinedButton(
|
||||
onPressed: _resetForm,
|
||||
style: OutlinedButton.styleFrom(
|
||||
minimumSize: const Size(double.infinity, 50),
|
||||
),
|
||||
child: Text(widget.isEdit ? 'Cancel' : 'Reset'),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 16),
|
||||
// Save/Update Button
|
||||
Expanded(
|
||||
child: ElevatedButton.icon(
|
||||
onPressed: _submit,
|
||||
label: Text(widget.isEdit ? 'Update' : 'Save'),
|
||||
style: ElevatedButton.styleFrom(
|
||||
minimumSize: const Size(double.infinity, 50),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user