mirror of
https://github.com/bitwarden/server.git
synced 2025-07-07 02:52:50 -05: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:
@ -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
|
||||
|
@ -3,7 +3,7 @@ CREATE TABLE [dbo].[TaxRate] (
|
||||
[Country] VARCHAR(50) NOT NULL,
|
||||
[State] VARCHAR(2) NULL,
|
||||
[PostalCode] VARCHAR(10) NOT NULL,
|
||||
[Rate] DECIMAL(5,2) NOT NULL,
|
||||
[Rate] DECIMAL(6,3) NOT NULL,
|
||||
[Active] BIT NOT NULL,
|
||||
CONSTRAINT [PK_TaxRate] PRIMARY KEY CLUSTERED ([Id] ASC)
|
||||
);
|
||||
|
Reference in New Issue
Block a user