refactor(FE): Rename expense item note to notes

This commit is contained in:
rstubryan
2026-01-19 17:27:49 +07:00
parent f091b4be43
commit 8a84542c60
6 changed files with 10 additions and 10 deletions
@@ -261,7 +261,7 @@ const ExpenseRealizationContent = ({
<td>{pengajuanItem.qty}</td> <td>{pengajuanItem.qty}</td>
<td>{formatCurrency(pengajuanItem.price)}</td> <td>{formatCurrency(pengajuanItem.price)}</td>
<td className='w-xs'> <td className='w-xs'>
{pengajuanItem.note ?? '-'} {pengajuanItem.notes ?? '-'}
</td> </td>
</tr> </tr>
) )
@@ -329,7 +329,7 @@ const ExpenseRealizationContent = ({
<td>{realisasiItem.qty}</td> <td>{realisasiItem.qty}</td>
<td>{formatCurrency(realisasiItem.price)}</td> <td>{formatCurrency(realisasiItem.price)}</td>
<td className='w-xs'> <td className='w-xs'>
{realisasiItem.note ?? '-'} {realisasiItem.notes ?? '-'}
</td> </td>
</tr> </tr>
) )
@@ -654,7 +654,7 @@ const ExpenseRequestContent = ({
<td>{pengajuanItem.qty}</td> <td>{pengajuanItem.qty}</td>
<td>{formatCurrency(pengajuanItem.price)}</td> <td>{formatCurrency(pengajuanItem.price)}</td>
<td className='w-xs'> <td className='w-xs'>
{pengajuanItem.note ?? '-'} {pengajuanItem.notes ?? '-'}
</td> </td>
</tr> </tr>
) )
@@ -159,7 +159,7 @@ export const getExpenseRealizationFormInitialValues = (
}, },
quantity: realisasiItem.qty, quantity: realisasiItem.qty,
price: realisasiItem.price, price: realisasiItem.price,
notes: realisasiItem.note, notes: realisasiItem.notes,
}; };
}) })
: kandangExpense.pengajuans : kandangExpense.pengajuans
@@ -170,7 +170,7 @@ export const getExpenseRealizationFormInitialValues = (
}, },
quantity: expenseItem.qty, quantity: expenseItem.qty,
price: expenseItem.price, price: expenseItem.price,
notes: expenseItem.note, notes: expenseItem.notes,
})) }))
: []; : [];
@@ -208,7 +208,7 @@ export const getExpenseFormInitialValues = (
nonstock_id: expenseItem.nonstock.id, nonstock_id: expenseItem.nonstock.id,
quantity: expenseItem.qty, quantity: expenseItem.qty,
price: expenseItem.price, price: expenseItem.price,
notes: expenseItem.note, notes: expenseItem.notes,
})) }))
: [], : [],
})) }))
@@ -447,7 +447,7 @@ const ExpensePDF = ({ expense }: ExpensePDFProps) => {
]} ]}
> >
<Text style={ExpensePDFStyle.kandangExpenseLabelText}> <Text style={ExpensePDFStyle.kandangExpenseLabelText}>
{pengajuan.note} {pengajuan.notes}
</Text> </Text>
</View> </View>
</View> </View>
@@ -607,7 +607,7 @@ const ExpensePDF = ({ expense }: ExpensePDFProps) => {
]} ]}
> >
<Text style={ExpensePDFStyle.kandangExpenseLabelText}> <Text style={ExpensePDFStyle.kandangExpenseLabelText}>
{realisasi.note} {realisasi.notes}
</Text> </Text>
</View> </View>
</View> </View>
+2 -2
View File
@@ -34,7 +34,7 @@ export type BaseExpense = {
nonstock_id: number; nonstock_id: number;
qty: number; qty: number;
price: number; price: number;
note?: string; notes?: string;
nonstock: Pick<BaseNonstock, 'id' | 'name' | 'flags'>; nonstock: Pick<BaseNonstock, 'id' | 'name' | 'flags'>;
created_at: string; created_at: string;
}[]; }[];
@@ -43,7 +43,7 @@ export type BaseExpense = {
expense_nonstock_id: number; expense_nonstock_id: number;
qty: number; qty: number;
price: number; price: number;
note?: string; notes?: string;
nonstock: Pick<BaseNonstock, 'id' | 'name' | 'flags'>; nonstock: Pick<BaseNonstock, 'id' | 'name' | 'flags'>;
created_at: string; created_at: string;
}[]; }[];