Skip to content

Commit

Permalink
Properly set charge code activity
Browse files Browse the repository at this point in the history
  • Loading branch information
rmaffitsancsoft committed Jun 28, 2024
1 parent 852fae7 commit f1ee064
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dotnet/HQ.Server/Services/QuoteServiceV1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

using FluentResults;

using HQ.Abstractions.Enumerations;
using HQ.Abstractions.Quotes;
using HQ.Server.Data;
using HQ.Server.Data.Models;
Expand Down Expand Up @@ -58,7 +59,8 @@ public QuoteServiceV1(HQDbContext context)
Code = newCode,
Billable = true,
Active = true,
QuoteId = quote.Id
QuoteId = quote.Id,
Activity = ChargeCodeActivity.Quote
};
quote.ChargeCode = newChargeCode;
quote.QuoteNumber = newQuoteNumber;
Expand Down

0 comments on commit f1ee064

Please sign in to comment.