|
|
@ -1299,7 +1299,7 @@ export const accountantFormartDetail = ( cellValue) => { |
|
|
|
return '' |
|
|
|
} |
|
|
|
cellValue = cellValue + '' || '' |
|
|
|
cellValue = Math.round(Number(cellValue) * 100) / 100 |
|
|
|
cellValue = String(Math.round(Number(cellValue) * 100) / 100) |
|
|
|
let x = cellValue.split('.') |
|
|
|
let x1 = x[0] |
|
|
|
let x2 = x.length > 1 ? '.' + x[1] : '' |
|
|
@ -1942,7 +1942,7 @@ export const SupplierinvoiceRequestDetailMain = useCrudSchemas(reactive<CrudSche |
|
|
|
])) |
|
|
|
|
|
|
|
const singlePriceFormart = (row, column, cellValue) => { |
|
|
|
cellValue = Math.round(Number(cellValue) * 100000) / 100000 |
|
|
|
cellValue = String(Math.round(Number(cellValue) * 100000) / 100000) |
|
|
|
cellValue = cellValue + '' || '' |
|
|
|
|
|
|
|
let x = cellValue.split('.') |
|
|
|