We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72c85c9 commit 4499e1bCopy full SHA for 4499e1b
2 files changed
src/application/infra/config/whiteLabel.ts
@@ -3,6 +3,7 @@ import { Database } from "../database";
3
export const whiteLabel = {
4
database: (process.env.DATABASE ?? "mongodb") as Database,
5
valueMonth: "2990",
6
+ systemName: "Belezix",
7
paymentDaysDue: 30,
8
gatewayPix: "woovi",
9
gatewayCreditCard: "pagarme",
src/slices/user/useCases/completeOwner/CompleteOwner.ts
@@ -122,7 +122,10 @@ export const completeOwner: CompleteOwnerSignature =
122
typeTax: "fixed",
123
active: true,
124
}),
125
- loadCategoryPlace({ fields: { name: "Parceiros Belezix" }, options: {} }),
+ loadCategoryPlace({
126
+ fields: { name: `Parceiros ${whiteLabel.systemName}` },
127
+ options: {},
128
+ }),
129
]);
130
const taxID = cpf?.length > 0 ? cpf : cnpj;
131
const customer = {
0 commit comments