Merge branch 'develop'
This commit is contained in:
commit
1af782f624
2 changed files with 3 additions and 2 deletions
|
|
@ -480,7 +480,7 @@ export class QuotationController extends Controller {
|
|||
|
||||
const originalPrice = body.agentPrice ? p.agentPrice : p.price;
|
||||
const finalPriceWithVat = precisionRound(
|
||||
originalPrice + (p.vatIncluded ? 0 : originalPrice * 1.07),
|
||||
originalPrice + (p.vatIncluded ? 0 : originalPrice * VAT_DEFAULT),
|
||||
);
|
||||
|
||||
const price = finalPriceWithVat;
|
||||
|
|
@ -747,7 +747,7 @@ export class QuotationController extends Controller {
|
|||
|
||||
const originalPrice = record.agentPrice ? p.agentPrice : p.price;
|
||||
const finalPriceWithVat = precisionRound(
|
||||
originalPrice + (p.vatIncluded ? 0 : originalPrice * 1.07),
|
||||
originalPrice + (p.vatIncluded ? 0 : originalPrice * VAT_DEFAULT),
|
||||
);
|
||||
|
||||
const price = finalPriceWithVat;
|
||||
|
|
|
|||
|
|
@ -166,6 +166,7 @@ export class TaskController extends Controller {
|
|||
responsibleUser: true,
|
||||
requestWork: {
|
||||
include: {
|
||||
stepStatus: true,
|
||||
request: {
|
||||
include: {
|
||||
employee: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue