You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- export const TAX_RATE_DEFAULT = 0.1;
-
- /**
- * 内税計算
- */
- export function calcInnerTax(
- totalAmount: number,
- rate: number = TAX_RATE_DEFAULT
- ) {
- return Math.floor((totalAmount * rate) / (1 + rate));
- }
|