fix: update terminology from "Per Unit" to "Per Produk" in CuttingCreate and CuttingEdit components
This commit is contained in:
parent
71128002d7
commit
659104fa19
@ -440,7 +440,7 @@ export default function CuttingCreate({ data }: Props) {
|
||||
</div>
|
||||
{cuttingResult > 0 && (
|
||||
<div className="flex items-center justify-between text-sm">
|
||||
<span className="text-muted-foreground">Biaya Per Unit</span>
|
||||
<span className="text-muted-foreground">Biaya Per Produk</span>
|
||||
<span className="font-medium">{formatCurrency(costPerUnit)}</span>
|
||||
</div>
|
||||
)}
|
||||
|
||||
@ -113,7 +113,7 @@ export function CuttingCardRow({
|
||||
{cutting.cost_per_unit && (
|
||||
<span className="font-semibold">
|
||||
<span className="font-normal text-muted-foreground">
|
||||
Per Unit:{' '}
|
||||
Per Produk:{' '}
|
||||
</span>
|
||||
{formatCurrency(cutting.cost_per_unit)}
|
||||
</span>
|
||||
|
||||
@ -416,7 +416,7 @@ export default function CuttingEdit({ cutting, data }: Props) {
|
||||
</div>
|
||||
{cuttingResult > 0 && (
|
||||
<div className="flex items-center justify-between text-sm">
|
||||
<span className="text-muted-foreground">Biaya Per Unit</span>
|
||||
<span className="text-muted-foreground">Biaya Per Produk</span>
|
||||
<span className="font-medium">{formatCurrency(costPerUnit)}</span>
|
||||
</div>
|
||||
)}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user