Merge branch 'fix/adjustment-uniformity-ui' into 'development'

[FIX/FE] Adjustment Uniformity, Expense, Purchase, and Recording Page UI

See merge request mbugroup/lti-web-client!304
This commit is contained in:
Rivaldi A N S
2026-02-03 07:35:29 +00:00
9 changed files with 565 additions and 505 deletions
+70 -59
View File
@@ -122,10 +122,18 @@ const ConfirmationModal = ({
closeOnBackdrop={closeOnBackdrop} closeOnBackdrop={closeOnBackdrop}
className={{ className={{
...className, ...className,
modalBox: cn('rounded-xl p-4', className?.modalBox), modalBox: cn(
'rounded-xl p-4 flex flex-col gap-4 max-h-[90vh]',
className?.modalBox
),
}} }}
> >
<div className='w-full flex flex-col gap-4'> <div
className={cn(
'flex flex-col gap-4',
children && 'sticky top-0 bg-inherit z-10'
)}
>
{iconPosition === 'center' ? ( {iconPosition === 'center' ? (
<> <>
<div className='w-fit mx-auto'> <div className='w-fit mx-auto'>
@@ -164,71 +172,74 @@ const ConfirmationModal = ({
</div> </div>
</div> </div>
)} )}
</div>
{children && <div className='w-full'>{children}</div>} {children && (
<div className='w-full flex-1 overflow-y-auto'>{children}</div>
)}
{(secondaryButton || primaryButton) && ( {(secondaryButton || primaryButton) && (
<div <div
className={cn('w-full grid gap-3', { className={cn(
'w-full grid gap-3',
children && 'sticky bottom-0 bg-inherit z-10',
{
'grid-cols-2': secondaryButton && primaryButton, 'grid-cols-2': secondaryButton && primaryButton,
'grid-cols-1': 'grid-cols-1':
(secondaryButton && !primaryButton) || (secondaryButton && !primaryButton) ||
(!secondaryButton && primaryButton), (!secondaryButton && primaryButton),
})} }
> )}
{secondaryButton && secondaryButton.text && ( >
<Button {secondaryButton && secondaryButton.text && (
{...secondaryButton} <Button
variant='outline' {...secondaryButton}
color={secondaryButton?.color} variant='outline'
isLoading={secondaryButton?.isLoading} color={secondaryButton?.color}
disabled={ isLoading={secondaryButton?.isLoading}
secondaryButton?.isLoading !== undefined disabled={
? secondaryButton?.isLoading secondaryButton?.isLoading !== undefined
: isPrimaryButtonLoading ? secondaryButton?.isLoading
: isPrimaryButtonLoading
}
onClick={(e) => {
if (secondaryButton?.onClick) {
secondaryButton.onClick(e);
} else {
closeModalHandler();
} }
onClick={(e) => { }}
if (secondaryButton?.onClick) { className={cn(
secondaryButton.onClick(e); 'p-2 rounded-xl text-sm',
} else { secondaryButton?.className
closeModalHandler(); )}
} >
}} {secondaryButton?.text ?? 'Tidak'}
className={cn( </Button>
'p-2 rounded-xl text-sm', )}
secondaryButton?.className
)}
>
{secondaryButton?.text ?? 'Tidak'}
</Button>
)}
{primaryButton && primaryButton.text && ( {primaryButton && primaryButton.text && (
<Button <Button
{...primaryButton} {...primaryButton}
color={primaryButton?.color ?? 'info'} color={primaryButton?.color ?? 'info'}
onClick={primaryButtonClickHandler} onClick={primaryButtonClickHandler}
isLoading={ isLoading={
primaryButton?.isLoading !== undefined primaryButton?.isLoading !== undefined
? primaryButton?.isLoading ? primaryButton?.isLoading
: isPrimaryButtonLoading : isPrimaryButtonLoading
} }
disabled={ disabled={
primaryButton?.isLoading !== undefined primaryButton?.isLoading !== undefined
? primaryButton?.isLoading ? primaryButton?.isLoading
: isPrimaryButtonLoading : isPrimaryButtonLoading
} }
className={cn( className={cn('p-2 rounded-xl text-sm', primaryButton?.className)}
'p-2 rounded-xl text-sm', >
primaryButton?.className {primaryButton?.text ?? 'Ya'}
)} </Button>
> )}
{primaryButton?.text ?? 'Ya'} </div>
</Button> )}
)}
</div>
)}
</div>
</Modal> </Modal>
); );
}; };
@@ -1,6 +1,7 @@
import PillBadge from '@/components/PillBadge'; import StatusBadge from '@/components/helper/StatusBadge';
import { BaseApproval } from '@/types/api/api-general'; import { BaseApproval } from '@/types/api/api-general';
import { Color } from '@/types/theme';
interface ExpenseStatusBadgeProps { interface ExpenseStatusBadgeProps {
approval?: BaseApproval; approval?: BaseApproval;
@@ -11,49 +12,45 @@ const ExpenseStatusBadge = ({ approval }: ExpenseStatusBadgeProps) => {
const latestApprovalStepNumber = approval?.step_number; const latestApprovalStepNumber = approval?.step_number;
let expenseStatusPillBadgeColor: let expenseStatusBadgeColor: Color = 'neutral';
| 'yellow'
| 'green'
| 'gray'
| 'red'
| 'purple'
| 'blue' = 'gray';
switch (latestApprovalStepNumber) { switch (latestApprovalStepNumber) {
case 1: case 1:
expenseStatusPillBadgeColor = 'gray'; expenseStatusBadgeColor = 'neutral';
break; break;
case 2: case 2:
expenseStatusPillBadgeColor = 'purple'; expenseStatusBadgeColor = 'info';
break; break;
case 3: case 3:
expenseStatusPillBadgeColor = 'blue'; expenseStatusBadgeColor = 'warning';
break; break;
case 4: case 4:
expenseStatusPillBadgeColor = 'yellow'; expenseStatusBadgeColor = 'error';
break; break;
case 5: case 5:
expenseStatusPillBadgeColor = 'green'; expenseStatusBadgeColor = 'success';
break; break;
case 6: case 6:
expenseStatusPillBadgeColor = 'green'; expenseStatusBadgeColor = 'success';
break; break;
} }
if (isLatestApprovalRejected) { if (isLatestApprovalRejected) {
expenseStatusPillBadgeColor = 'red'; expenseStatusBadgeColor = 'error';
} }
return ( return (
<PillBadge <StatusBadge
content={isLatestApprovalRejected ? 'Ditolak' : approval?.step_name} color={expenseStatusBadgeColor}
color={expenseStatusPillBadgeColor} text={isLatestApprovalRejected ? 'Ditolak' : (approval?.step_name ?? '')}
className='text-xs' className={{
badge: 'w-fit',
}}
/> />
); );
}; };
@@ -596,12 +596,11 @@ const ExpensesTable = () => {
<RequirePermission permissions='lti.expense.create'> <RequirePermission permissions='lti.expense.create'>
<Button <Button
href='/expense/add' href='/expense/add'
variant='outline'
color='primary' color='primary'
className='w-full sm:w-fit' className='px-3 py-2.5 w-fit text-sm text-base-100 rounded-lg shadow-sm'
> >
<Icon icon='ic:round-plus' width={24} height={24} /> <Icon icon='heroicons:plus' width={20} height={20} />
Tambah Add Expense
</Button> </Button>
</RequirePermission> </RequirePermission>
@@ -1,6 +1,7 @@
import PillBadge from '@/components/PillBadge'; import StatusBadge from '@/components/helper/StatusBadge';
import { BaseApproval } from '@/types/api/api-general'; import { BaseApproval } from '@/types/api/api-general';
import { Color } from '@/types/theme';
interface RealizationStatusBadgeProps { interface RealizationStatusBadgeProps {
approval?: BaseApproval; approval?: BaseApproval;
@@ -15,23 +16,21 @@ const RealizationStatusBadge = ({ approval }: RealizationStatusBadgeProps) => {
? 'Sudah Realisasi' ? 'Sudah Realisasi'
: 'Belum Realisasi'; : 'Belum Realisasi';
let realizationStatusPillBadgeColor: let realizationStatusBadgeColor: Color = isExpenseRealized
| 'yellow' ? 'success'
| 'green' : 'warning';
| 'gray'
| 'red'
| 'purple'
| 'blue' = isExpenseRealized ? 'green' : 'yellow';
if (isLatestApprovalRejected) { if (isLatestApprovalRejected) {
realizationStatusPillBadgeColor = 'red'; realizationStatusBadgeColor = 'error';
} }
return ( return (
<PillBadge <StatusBadge
content={isLatestApprovalRejected ? 'Ditolak' : realizationStatus} color={realizationStatusBadgeColor}
color={realizationStatusPillBadgeColor} text={isLatestApprovalRejected ? 'Ditolak' : realizationStatus}
className='text-xs' className={{
badge: 'w-fit',
}}
/> />
); );
}; };
@@ -151,12 +151,11 @@ const MovementTable = () => {
<RequirePermission permissions='lti.inventory.transfer.create'> <RequirePermission permissions='lti.inventory.transfer.create'>
<Button <Button
href='/inventory/movement/add' href='/inventory/movement/add'
variant='outline'
color='primary' color='primary'
className='w-full sm:w-fit' className='px-3 py-2.5 w-fit text-sm text-base-100 rounded-lg shadow-sm'
> >
<Icon icon='ic:round-plus' width={24} height={24} /> <Icon icon='heroicons:plus' width={20} height={20} />
Tambah Add Movement
</Button> </Button>
</RequirePermission> </RequirePermission>
</div> </div>
@@ -380,12 +380,11 @@ const RecordingTable = () => {
<RequirePermission permissions='lti.production.recording.create'> <RequirePermission permissions='lti.production.recording.create'>
<Button <Button
href='/production/recording/add' href='/production/recording/add'
variant='outline'
color='primary' color='primary'
className='w-full sm:w-fit' className='px-3 py-2.5 w-fit text-sm text-base-100 rounded-lg shadow-sm'
> >
<Icon icon='ic:round-plus' width={24} height={24} /> <Icon icon='heroicons:plus' width={20} height={20} />
Tambah Add Recording
</Button> </Button>
</RequirePermission> </RequirePermission>
@@ -48,6 +48,7 @@ import {
UpdateLayingRecordingPayload, UpdateLayingRecordingPayload,
Recording, Recording,
NextDayRecording, NextDayRecording,
RecordingStock,
} from '@/types/api/production/recording'; } from '@/types/api/production/recording';
import { type BaseApiResponse } from '@/types/api/api-general'; import { type BaseApiResponse } from '@/types/api/api-general';
import { import {
@@ -1103,14 +1104,51 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
[formik.values.stocks, type] [formik.values.stocks, type]
); );
const getStockPendingInfo = useCallback(
(productWarehouseId: number) => {
if ((type === 'edit' || type === 'detail') && initialValues?.stocks) {
const existingStock = initialValues.stocks.find(
(s) => s.product_warehouse_id === productWarehouseId
) as RecordingStock | undefined;
if (existingStock) {
return {
usageAmount: existingStock.usage_amount ?? 0,
pendingQty: existingStock.pending_qty ?? 0,
};
}
}
return {
usageAmount: 0,
pendingQty: 0,
};
},
[initialValues, type]
);
const getStockUsageAdornment = useCallback( const getStockUsageAdornment = useCallback(
(stockIdx: number) => { (stockIdx: number) => {
if ((type as 'add' | 'edit' | 'detail') === 'detail') return null;
const stock = formik.values.stocks?.[stockIdx]; const stock = formik.values.stocks?.[stockIdx];
if (!stock || !stock.product_warehouse_id) return null; if (!stock || !stock.product_warehouse_id) return null;
const isDetail = (type as 'add' | 'edit' | 'detail') === 'detail';
const availableStock = getAvailableStock(stock.product_warehouse_id); const availableStock = getAvailableStock(stock.product_warehouse_id);
const requestedUsage = Number(stock.qty) || 0; const requestedUsage = Number(stock.qty) || 0;
const remainingStock = availableStock - requestedUsage; const remainingStock = availableStock - requestedUsage;
const { pendingQty } = getStockPendingInfo(stock.product_warehouse_id);
if (isDetail) {
if (pendingQty > 0) {
return (
<span className='text-sm text-gray-600 whitespace-nowrap'>
(tersedia: {formatNumber(requestedUsage)} | pending:{' '}
<span className='text-error'>{formatNumber(pendingQty)}</span> |
pakai: {formatNumber(requestedUsage + pendingQty)})
</span>
);
}
return null;
}
if (requestedUsage > 0) { if (requestedUsage > 0) {
return ( return (
<span className='text-sm text-gray-600 whitespace-nowrap'> <span className='text-sm text-gray-600 whitespace-nowrap'>
@@ -1127,7 +1165,7 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
</span> </span>
); );
}, },
[formik.values.stocks, getAvailableStock, type] [formik.values.stocks, getAvailableStock, getStockPendingInfo, type]
); );
const getProjectFlockBadgeAdornment = useCallback(() => { const getProjectFlockBadgeAdornment = useCallback(() => {
@@ -2550,8 +2588,7 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
: null : null
} }
/> />
{(type as 'add' | 'edit' | 'detail') !== 'detail' && {getStockUsageAdornment(idx)}
getStockUsageAdornment(idx)}
</div> </div>
</td> </td>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && ( {(type as 'add' | 'edit' | 'detail') !== 'detail' && (
@@ -2604,209 +2641,10 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
</Card> </Card>
{/* Depletions Table */} {/* Depletions Table */}
<Card {((type as 'add' | 'edit' | 'detail') !== 'detail' ||
title='Deplesi' (formik.values.depletions?.length ?? 0) > 0) && (
className={{
wrapper: 'w-full mb-4 shadow',
title: 'mb-4',
}}
>
<div className='overflow-x-auto'>
<table className='table'>
<thead>
<tr>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<th>
<CheckboxInput
name='select-all-depletions'
checked={
formik.values.depletions?.length ===
selectedDepletions.length &&
formik.values.depletions?.length > 0
}
onChange={(
e: React.ChangeEvent<HTMLInputElement>
) => {
if (e.target.checked) {
setSelectedDepletions(
formik.values.depletions?.map(
(_, idx) => idx
) ?? []
);
} else {
setSelectedDepletions([]);
}
}}
classNames={{
wrapper: 'flex justify-center',
checkbox: 'checkbox checkbox-sm',
}}
/>
</th>
)}
<th>Kondisi</th>
<th>Jumlah</th>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<th>Action</th>
)}
</tr>
</thead>
<tbody>
{formik.values.depletions?.map((depletion, idx) => (
<tr key={`depletion-${idx}`}>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<td className='align-middle!'>
<CheckboxInput
name={`depletion-${idx}`}
checked={selectedDepletions.includes(idx)}
onChange={(
e: React.ChangeEvent<HTMLInputElement>
) => {
if (e.target.checked) {
setSelectedDepletions([
...selectedDepletions,
idx,
]);
} else {
setSelectedDepletions(
selectedDepletions.filter((i) => i !== idx)
);
}
}}
classNames={{
wrapper: 'flex justify-center',
checkbox: 'checkbox checkbox-sm',
}}
/>
</td>
)}
<td>
<SelectInput
value={
depletionProducts.find(
(product) =>
product.value === depletion.product_warehouse_id
) || null
}
onChange={(selectedOption) => {
const option = selectedOption as OptionType | null;
formik.setFieldValue(
`depletions.${idx}.product_warehouse_id`,
option?.value || 0
);
}}
options={getAvailableDepletionProductOptions(idx)}
placeholder='Pilih Kondisi'
isLoading={isLoadingDepletionProducts}
onMenuScrollToBottom={loadMoreDepletionProducts}
isError={
isRepeaterInputError(
'depletions',
'product_warehouse_id',
idx
).isError
}
errorMessage={
isRepeaterInputError(
'depletions',
'product_warehouse_id',
idx
).errorMessage
}
isDisabled={type === 'detail'}
className={{
wrapper: 'w-full min-w-48',
}}
isSearchable
isClearable={type !== 'detail'}
/>
</td>
<td>
<NumberInput
name={`depletions.${idx}.qty`}
value={depletion.qty ?? ''}
onChange={handleDepletionQtyChangeWrapper(idx)}
onBlur={formik.handleBlur}
decimalScale={0}
allowNegative={false}
thousandSeparator=','
decimalSeparator='.'
isError={
isRepeaterInputError('depletions', 'qty', idx)
.isError
}
errorMessage={
isRepeaterInputError('depletions', 'qty', idx)
.errorMessage
}
readOnly={type === 'detail'}
className={{
wrapper: 'w-full min-w-24',
}}
placeholder='Masukkan jumlah deplesi'
inputSuffix={
depletion.product_warehouse_id
? getProductUomSuffix(
depletion.product_warehouse_id,
'depletion'
)
: null
}
/>
</td>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<td>
<div className='flex items-center'>
<Button
type='button'
color='error'
onClick={() => removeDepletion(idx)}
>
<Icon
icon='mdi:trash-can'
width={24}
height={24}
/>
</Button>
</div>
</td>
)}
</tr>
))}
</tbody>
</table>
</div>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<div className='flex justify-center items-center mt-4 gap-4'>
{selectedDepletions.length > 0 && (
<Button
type='button'
color='error'
onClick={removeSelectedDepletions}
disabled={selectedDepletions.length === 0}
className='w-fit'
>
<Icon icon='mdi:trash-can' width={24} height={24} />
Hapus Terpilih ({selectedDepletions.length})
</Button>
)}
<Button
type='button'
color='success'
onClick={addDepletion}
className='w-fit'
>
<Icon icon='ic:round-plus' width={24} height={24} />
Tambah Depletion
</Button>
</div>
)}
</Card>
{/* Eggs Table - Only for LAYING Category */}
{isLayingCategory && (
<Card <Card
title='Telur' title='Deplesi'
className={{ className={{
wrapper: 'w-full mb-4 shadow', wrapper: 'w-full mb-4 shadow',
title: 'mb-4', title: 'mb-4',
@@ -2819,24 +2657,23 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
{(type as 'add' | 'edit' | 'detail') !== 'detail' && ( {(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<th> <th>
<CheckboxInput <CheckboxInput
name='select-all-eggs' name='select-all-depletions'
checked={ checked={
((formik.values as RecordingLayingFormValues).eggs formik.values.depletions?.length ===
?.length ?? 0) === selectedEggs.length && selectedDepletions.length &&
((formik.values as RecordingLayingFormValues).eggs formik.values.depletions?.length > 0
?.length ?? 0) > 0
} }
onChange={( onChange={(
e: React.ChangeEvent<HTMLInputElement> e: React.ChangeEvent<HTMLInputElement>
) => { ) => {
if (e.target.checked) { if (e.target.checked) {
setSelectedEggs( setSelectedDepletions(
( formik.values.depletions?.map(
formik.values as RecordingLayingFormValues (_, idx) => idx
).eggs?.map((_, idx) => idx) ?? [] ) ?? []
); );
} else { } else {
setSelectedEggs([]); setSelectedDepletions([]);
} }
}} }}
classNames={{ classNames={{
@@ -2846,201 +2683,412 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
/> />
</th> </th>
)} )}
<th>Kondisi Telur</th> <th>Kondisi</th>
<th>Jumlah</th> <th>Jumlah</th>
<th className='flex items-center gap-1'>
Total Berat (Kilogram)
<Tooltip
className={{
wrapper: 'cursor-pointer',
}}
position='bottom'
content='Untuk menggunakan koma bisa menekan tombol titik (.) pada keyboard, Misal 0.123'
>
<Icon
icon='heroicons:information-circle'
width={20}
height={20}
className='text-gray-400 hover:text-gray-600 shrink-0'
/>
</Tooltip>
</th>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && ( {(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<th>Action</th> <th>Action</th>
)} )}
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{(formik.values as RecordingLayingFormValues).eggs?.map( {formik.values.depletions?.map((depletion, idx) => (
(egg, idx) => ( <tr key={`depletion-${idx}`}>
<tr key={`egg-${idx}`}> {(type as 'add' | 'edit' | 'detail') !== 'detail' && (
{(type as 'add' | 'edit' | 'detail') !== 'detail' && ( <td className='align-middle!'>
<td className='align-middle!'> <CheckboxInput
<CheckboxInput name={`depletion-${idx}`}
name={`egg-${idx}`} checked={selectedDepletions.includes(idx)}
checked={selectedEggs.includes(idx)} onChange={(
onChange={( e: React.ChangeEvent<HTMLInputElement>
e: React.ChangeEvent<HTMLInputElement> ) => {
) => { if (e.target.checked) {
if (e.target.checked) { setSelectedDepletions([
setSelectedEggs([...selectedEggs, idx]); ...selectedDepletions,
} else { idx,
setSelectedEggs( ]);
selectedEggs.filter((i) => i !== idx) } else {
); setSelectedDepletions(
} selectedDepletions.filter((i) => i !== idx)
}} );
classNames={{ }
wrapper: 'flex justify-center',
checkbox: 'checkbox checkbox-sm',
}}
/>
</td>
)}
<td>
<SelectInput
value={
eggProducts.find(
(product) =>
product.value === egg.product_warehouse_id
) || null
}
onChange={(selectedOption) => {
const option =
selectedOption as OptionType | null;
formik.setFieldValue(
`eggs.${idx}.product_warehouse_id`,
option?.value || 0
);
}} }}
options={getAvailableEggProductOptions(idx)} classNames={{
placeholder='Pilih Kondisi Telur' wrapper: 'flex justify-center',
isLoading={isLoadingEggProducts} checkbox: 'checkbox checkbox-sm',
onMenuScrollToBottom={loadMoreEggProducts}
isError={
isRepeaterInputError(
'eggs',
'product_warehouse_id',
idx
).isError
}
errorMessage={
isRepeaterInputError(
'eggs',
'product_warehouse_id',
idx
).errorMessage
}
isDisabled={type === 'detail'}
className={{
wrapper: 'w-full min-w-48',
}} }}
isSearchable
isClearable={type !== 'detail'}
/> />
</td> </td>
)}
<td>
<SelectInput
value={
depletionProducts.find(
(product) =>
product.value ===
depletion.product_warehouse_id
) || null
}
onChange={(selectedOption) => {
const option =
selectedOption as OptionType | null;
formik.setFieldValue(
`depletions.${idx}.product_warehouse_id`,
option?.value || 0
);
}}
options={getAvailableDepletionProductOptions(idx)}
placeholder='Pilih Kondisi'
isLoading={isLoadingDepletionProducts}
onMenuScrollToBottom={loadMoreDepletionProducts}
isError={
isRepeaterInputError(
'depletions',
'product_warehouse_id',
idx
).isError
}
errorMessage={
isRepeaterInputError(
'depletions',
'product_warehouse_id',
idx
).errorMessage
}
isDisabled={type === 'detail'}
className={{
wrapper: 'w-full min-w-48',
}}
isSearchable
isClearable={type !== 'detail'}
/>
</td>
<td>
<NumberInput
name={`depletions.${idx}.qty`}
value={depletion.qty ?? ''}
onChange={handleDepletionQtyChangeWrapper(idx)}
onBlur={formik.handleBlur}
decimalScale={0}
allowNegative={false}
thousandSeparator=','
decimalSeparator='.'
isError={
isRepeaterInputError('depletions', 'qty', idx)
.isError
}
errorMessage={
isRepeaterInputError('depletions', 'qty', idx)
.errorMessage
}
readOnly={type === 'detail'}
className={{
wrapper: 'w-full min-w-24',
}}
placeholder='Masukkan jumlah deplesi'
inputSuffix={
depletion.product_warehouse_id
? getProductUomSuffix(
depletion.product_warehouse_id,
'depletion'
)
: null
}
/>
</td>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<td> <td>
<NumberInput <div className='flex items-center'>
name={`eggs.${idx}.qty`} <Button
value={egg.qty ?? ''} type='button'
onChange={handleEggQtyChangeWrapper(idx)} color='error'
onBlur={formik.handleBlur} onClick={() => removeDepletion(idx)}
decimalScale={0} >
allowNegative={false} <Icon
thousandSeparator=',' icon='mdi:trash-can'
decimalSeparator='.' width={24}
isError={ height={24}
isRepeaterInputError('eggs', 'qty', idx).isError />
} </Button>
errorMessage={ </div>
isRepeaterInputError('eggs', 'qty', idx)
.errorMessage
}
readOnly={type === 'detail'}
className={{
wrapper: 'w-full min-w-24',
}}
placeholder='Masukkan jumlah telur'
inputSuffix={'Butir'}
/>
</td> </td>
<td> )}
<NumberInput </tr>
name={`eggs.${idx}.weight`} ))}
value={egg.weight ?? ''}
onChange={handleEggWeightChangeWrapper(idx)}
onBlur={formik.handleBlur}
decimalScale={3}
allowNegative={false}
thousandSeparator=','
decimalSeparator='.'
isError={
isRepeaterInputError('eggs', 'weight', idx)
.isError
}
errorMessage={
isRepeaterInputError('eggs', 'weight', idx)
.errorMessage
}
readOnly={type === 'detail'}
className={{
wrapper: 'w-full min-w-24',
}}
placeholder='Masukkan total berat telur (Kilogram)...'
inputSuffix='Kilogram'
/>
</td>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<td>
<div className='flex items-center'>
<Button
type='button'
color='error'
onClick={() => removeEgg(idx)}
>
<Icon
icon='mdi:trash-can'
width={24}
height={24}
/>
</Button>
</div>
</td>
)}
</tr>
)
)}
</tbody> </tbody>
</table> </table>
</div> </div>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && ( {(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<div className='flex justify-center items-center mt-4 gap-4'> <div className='flex justify-center items-center mt-4 gap-4'>
{selectedEggs.length > 0 && ( {selectedDepletions.length > 0 && (
<Button <Button
type='button' type='button'
color='error' color='error'
onClick={removeSelectedEggs} onClick={removeSelectedDepletions}
disabled={selectedEggs.length === 0} disabled={selectedDepletions.length === 0}
className='w-fit' className='w-fit'
> >
<Icon icon='mdi:trash-can' width={24} height={24} /> <Icon icon='mdi:trash-can' width={24} height={24} />
Hapus Terpilih ({selectedEggs.length}) Hapus Terpilih ({selectedDepletions.length})
</Button> </Button>
)} )}
<Button <Button
type='button' type='button'
color='success' color='success'
onClick={addEgg} onClick={addDepletion}
className='w-fit' className='w-fit'
> >
<Icon icon='ic:round-plus' width={24} height={24} /> <Icon icon='ic:round-plus' width={24} height={24} />
Tambah Telur Tambah Depletion
</Button> </Button>
</div> </div>
)} )}
</Card> </Card>
)} )}
{/* Eggs Table - Only for LAYING Category */}
{isLayingCategory &&
((type as 'add' | 'edit' | 'detail') !== 'detail' ||
((formik.values as RecordingLayingFormValues).eggs?.length ?? 0) >
0) && (
<Card
title='Telur'
className={{
wrapper: 'w-full mb-4 shadow',
title: 'mb-4',
}}
>
<div className='overflow-x-auto'>
<table className='table'>
<thead>
<tr>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<th>
<CheckboxInput
name='select-all-eggs'
checked={
((formik.values as RecordingLayingFormValues)
.eggs?.length ?? 0) === selectedEggs.length &&
((formik.values as RecordingLayingFormValues)
.eggs?.length ?? 0) > 0
}
onChange={(
e: React.ChangeEvent<HTMLInputElement>
) => {
if (e.target.checked) {
setSelectedEggs(
(
formik.values as RecordingLayingFormValues
).eggs?.map((_, idx) => idx) ?? []
);
} else {
setSelectedEggs([]);
}
}}
classNames={{
wrapper: 'flex justify-center',
checkbox: 'checkbox checkbox-sm',
}}
/>
</th>
)}
<th>Kondisi Telur</th>
<th>Jumlah</th>
<th className='flex items-center gap-1'>
Total Berat (Kilogram)
<Tooltip
className={{
wrapper: 'cursor-pointer',
}}
position='bottom'
content='Untuk menggunakan koma bisa menekan tombol titik (.) pada keyboard, Misal 0.123'
>
<Icon
icon='heroicons:information-circle'
width={20}
height={20}
className='text-gray-400 hover:text-gray-600 shrink-0'
/>
</Tooltip>
</th>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<th>Action</th>
)}
</tr>
</thead>
<tbody>
{(formik.values as RecordingLayingFormValues).eggs?.map(
(egg, idx) => (
<tr key={`egg-${idx}`}>
{(type as 'add' | 'edit' | 'detail') !==
'detail' && (
<td className='align-middle!'>
<CheckboxInput
name={`egg-${idx}`}
checked={selectedEggs.includes(idx)}
onChange={(
e: React.ChangeEvent<HTMLInputElement>
) => {
if (e.target.checked) {
setSelectedEggs([...selectedEggs, idx]);
} else {
setSelectedEggs(
selectedEggs.filter((i) => i !== idx)
);
}
}}
classNames={{
wrapper: 'flex justify-center',
checkbox: 'checkbox checkbox-sm',
}}
/>
</td>
)}
<td>
<SelectInput
value={
eggProducts.find(
(product) =>
product.value === egg.product_warehouse_id
) || null
}
onChange={(selectedOption) => {
const option =
selectedOption as OptionType | null;
formik.setFieldValue(
`eggs.${idx}.product_warehouse_id`,
option?.value || 0
);
}}
options={getAvailableEggProductOptions(idx)}
placeholder='Pilih Kondisi Telur'
isLoading={isLoadingEggProducts}
onMenuScrollToBottom={loadMoreEggProducts}
isError={
isRepeaterInputError(
'eggs',
'product_warehouse_id',
idx
).isError
}
errorMessage={
isRepeaterInputError(
'eggs',
'product_warehouse_id',
idx
).errorMessage
}
isDisabled={type === 'detail'}
className={{
wrapper: 'w-full min-w-48',
}}
isSearchable
isClearable={type !== 'detail'}
/>
</td>
<td>
<NumberInput
name={`eggs.${idx}.qty`}
value={egg.qty ?? ''}
onChange={handleEggQtyChangeWrapper(idx)}
onBlur={formik.handleBlur}
decimalScale={0}
allowNegative={false}
thousandSeparator=','
decimalSeparator='.'
isError={
isRepeaterInputError('eggs', 'qty', idx)
.isError
}
errorMessage={
isRepeaterInputError('eggs', 'qty', idx)
.errorMessage
}
readOnly={type === 'detail'}
className={{
wrapper: 'w-full min-w-24',
}}
placeholder='Masukkan jumlah telur'
inputSuffix={'Butir'}
/>
</td>
<td>
<NumberInput
name={`eggs.${idx}.weight`}
value={egg.weight ?? ''}
onChange={handleEggWeightChangeWrapper(idx)}
onBlur={formik.handleBlur}
decimalScale={3}
allowNegative={false}
thousandSeparator=','
decimalSeparator='.'
isError={
isRepeaterInputError('eggs', 'weight', idx)
.isError
}
errorMessage={
isRepeaterInputError('eggs', 'weight', idx)
.errorMessage
}
readOnly={type === 'detail'}
className={{
wrapper: 'w-full min-w-24',
}}
placeholder='Masukkan total berat telur (Kilogram)...'
inputSuffix='Kilogram'
/>
</td>
{(type as 'add' | 'edit' | 'detail') !==
'detail' && (
<td>
<div className='flex items-center'>
<Button
type='button'
color='error'
onClick={() => removeEgg(idx)}
>
<Icon
icon='mdi:trash-can'
width={24}
height={24}
/>
</Button>
</div>
</td>
)}
</tr>
)
)}
</tbody>
</table>
</div>
{(type as 'add' | 'edit' | 'detail') !== 'detail' && (
<div className='flex justify-center items-center mt-4 gap-4'>
{selectedEggs.length > 0 && (
<Button
type='button'
color='error'
onClick={removeSelectedEggs}
disabled={selectedEggs.length === 0}
className='w-fit'
>
<Icon icon='mdi:trash-can' width={24} height={24} />
Hapus Terpilih ({selectedEggs.length})
</Button>
)}
<Button
type='button'
color='success'
onClick={addEgg}
className='w-fit'
>
<Icon icon='ic:round-plus' width={24} height={24} />
Tambah Telur
</Button>
</div>
)}
</Card>
)}
<div className='w-full'> <div className='w-full'>
{recordingFormErrorMessage && ( {recordingFormErrorMessage && (
<div role='alert' className='alert alert-error'> <div role='alert' className='alert alert-error'>
@@ -1058,7 +1058,7 @@ const UniformityTable = () => {
iconPosition='left' iconPosition='left'
text='Data Berhasil Ditambahkan' text='Data Berhasil Ditambahkan'
subtitleText='Data uniformity telah berhasil disimpan.' subtitleText='Data uniformity telah berhasil disimpan.'
closeOnBackdrop={false} closeOnBackdrop={true}
primaryButton={{ primaryButton={{
text: 'Ok', text: 'Ok',
color: 'primary', color: 'primary',
@@ -1089,6 +1089,7 @@ const UniformityTable = () => {
ref={singleDeleteModal.ref} ref={singleDeleteModal.ref}
type='error' type='error'
iconPosition='left' iconPosition='left'
closeOnBackdrop={true}
text={`Delete This Data?`} text={`Delete This Data?`}
subtitleText='Are you sure you want to delete this data?' subtitleText='Are you sure you want to delete this data?'
secondaryButton={{ secondaryButton={{
@@ -1113,6 +1114,7 @@ const UniformityTable = () => {
ref={singleApproveModal.ref} ref={singleApproveModal.ref}
type='success' type='success'
iconPosition='left' iconPosition='left'
closeOnBackdrop={true}
text='Approve This Submission?' text='Approve This Submission?'
subtitleText='Are you sure you want to approve this submission?' subtitleText='Are you sure you want to approve this submission?'
secondaryButton={{ secondaryButton={{
@@ -1129,15 +1131,12 @@ const UniformityTable = () => {
}} }}
> >
<div className='flex flex-col gap-4'> <div className='flex flex-col gap-4'>
{selectedRowIds.length === 1 ? ( {selectedUniformities.map((uniformity) => (
<UniformityConfirmationPreview <UniformityConfirmationPreview
uniformity={selectedUniformities[0]} key={uniformity.id}
uniformity={uniformity}
/> />
) : ( ))}
<div className='text-center text-gray-500'>
{selectedRowIds.length} data dipilih
</div>
)}
</div> </div>
</ConfirmationModal> </ConfirmationModal>
@@ -1145,8 +1144,13 @@ const UniformityTable = () => {
ref={bulkApproveModal.ref} ref={bulkApproveModal.ref}
type='success' type='success'
iconPosition='left' iconPosition='left'
closeOnBackdrop={true}
text={`Approve This Submission?`} text={`Approve This Submission?`}
subtitleText={`Are you sure you want to approve this submission? (${selectedRowIds.length} data)`} subtitleText={
selectedRowIds.length === 1
? 'Are you sure you want to approve this submission?'
: `Are you sure you want to approve these submissions? (${selectedRowIds.length} data)`
}
secondaryButton={{ secondaryButton={{
text: 'Cancel', text: 'Cancel',
}} }}
@@ -1161,7 +1165,12 @@ const UniformityTable = () => {
}} }}
> >
<div className='flex flex-col gap-4'> <div className='flex flex-col gap-4'>
<UniformityConfirmationPreview uniformity={selectedUniformity} /> {selectedUniformities.map((uniformity) => (
<UniformityConfirmationPreview
key={uniformity.id}
uniformity={uniformity}
/>
))}
</div> </div>
</ConfirmationModal> </ConfirmationModal>
@@ -1169,6 +1178,7 @@ const UniformityTable = () => {
ref={singleRejectModal.ref} ref={singleRejectModal.ref}
type='error' type='error'
iconPosition='left' iconPosition='left'
closeOnBackdrop={true}
text='Reject This Submission?' text='Reject This Submission?'
subtitleText='Are you sure you want to reject this submission?' subtitleText='Are you sure you want to reject this submission?'
secondaryButton={{ secondaryButton={{
@@ -1185,15 +1195,12 @@ const UniformityTable = () => {
}} }}
> >
<div className='flex flex-col gap-4'> <div className='flex flex-col gap-4'>
{selectedRowIds.length === 1 ? ( {selectedUniformities.map((uniformity) => (
<UniformityConfirmationPreview <UniformityConfirmationPreview
uniformity={selectedUniformities[0]} key={uniformity.id}
uniformity={uniformity}
/> />
) : ( ))}
<div className='text-center text-gray-500'>
{selectedRowIds.length} data dipilih
</div>
)}
</div> </div>
</ConfirmationModal> </ConfirmationModal>
@@ -1201,8 +1208,13 @@ const UniformityTable = () => {
ref={bulkRejectModal.ref} ref={bulkRejectModal.ref}
type='error' type='error'
iconPosition='left' iconPosition='left'
closeOnBackdrop={true}
text={`Reject This Submission?`} text={`Reject This Submission?`}
subtitleText={`Are you sure you want to reject this submission? (${selectedRowIds.length} data)`} subtitleText={
selectedRowIds.length === 1
? 'Are you sure you want to reject this submission?'
: `Are you sure you want to reject these submissions? (${selectedRowIds.length} data)`
}
secondaryButton={{ secondaryButton={{
text: 'Cancel', text: 'Cancel',
}} }}
@@ -1217,15 +1229,12 @@ const UniformityTable = () => {
}} }}
> >
<div className='flex flex-col gap-4'> <div className='flex flex-col gap-4'>
{selectedRowIds.length === 1 ? ( {selectedUniformities.map((uniformity) => (
<UniformityConfirmationPreview <UniformityConfirmationPreview
uniformity={selectedUniformities[0]} key={uniformity.id}
uniformity={uniformity}
/> />
) : ( ))}
<div className='text-center text-gray-500'>
{selectedRowIds.length} data dipilih
</div>
)}
</div> </div>
</ConfirmationModal> </ConfirmationModal>
@@ -319,12 +319,11 @@ const PurchaseTable = () => {
<RequirePermission permissions='lti.purchase.create'> <RequirePermission permissions='lti.purchase.create'>
<Button <Button
href='/purchase/add' href='/purchase/add'
variant='outline'
color='primary' color='primary'
className='w-full sm:w-fit' className='px-3 py-2.5 w-fit text-sm text-base-100 rounded-lg shadow-sm'
> >
<Icon icon='ic:round-plus' width={24} height={24} /> <Icon icon='heroicons:plus' width={20} height={20} />
Tambah Add Purchase
</Button> </Button>
</RequirePermission> </RequirePermission>
</div> </div>