1
0
mirror of https://github.com/bitwarden/server synced 2026-01-16 15:33:19 +00:00

Increase sales tax precision from 2 to 3 decimal places (#1525)

* Allow for tax rates with 3 decimal places

* Update input validation

* Increase precision of create procedure
This commit is contained in:
Thomas Rittson
2021-08-24 06:52:59 +10:00
committed by GitHub
parent a0a5ddef77
commit 4bc683c38d
4 changed files with 47 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ CREATE PROCEDURE [dbo].[TaxRate_Create]
@Country VARCHAR(50),
@State VARCHAR(2),
@PostalCode VARCHAR(10),
@Rate DECIMAL(5,2),
@Rate DECIMAL(6,3),
@Active BIT
AS
BEGIN