596 lines
18 KiB
TypeScript
596 lines
18 KiB
TypeScript
|
|
import { PrismaService } from '@/prisma/prisma.service'
|
||
|
|
import { BadRequestException, Injectable, NotFoundException } from '@nestjs/common'
|
||
|
|
import {
|
||
|
|
TspProviderCustomerType,
|
||
|
|
TspProviderRequestType,
|
||
|
|
TspProviderResponseStatus,
|
||
|
|
} from 'generated/prisma/client'
|
||
|
|
import { CreateSalesInvoiceDto } from '../pos/sales-invoices/dto/create-sales-invoice.dto'
|
||
|
|
import {
|
||
|
|
TspProviderSendItemResultDto,
|
||
|
|
TspProviderSendPayloadDto,
|
||
|
|
} from './dto/provider-switch.dto'
|
||
|
|
import { SalesInvoiceTspSwitchService } from './sales-invoice-tsp-switch.service'
|
||
|
|
|
||
|
|
type ItemTspRow = {
|
||
|
|
tsp_provider: string | null
|
||
|
|
tax_id: string | null
|
||
|
|
}
|
||
|
|
|
||
|
|
type IAttempt = any
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class SalesInvoiceTspService {
|
||
|
|
constructor(
|
||
|
|
private readonly prisma: PrismaService,
|
||
|
|
private readonly tspSwitchService: SalesInvoiceTspSwitchService,
|
||
|
|
) {}
|
||
|
|
|
||
|
|
async send(consumer_id: string, invoice_id: string): Promise<IAttempt> {
|
||
|
|
const posId = await this.getPosId(consumer_id, invoice_id)
|
||
|
|
const payload = await this.buildPayload(invoice_id, posId)
|
||
|
|
const attempt = await this.prisma.saleInvoiceTspAttempts.create({
|
||
|
|
data: {
|
||
|
|
attempt_no: 1,
|
||
|
|
invoice_id,
|
||
|
|
status: TspProviderResponseStatus.QUEUED,
|
||
|
|
type: TspProviderRequestType.MAIN,
|
||
|
|
request_payload: JSON.parse(JSON.stringify(payload)),
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
const sendResult = await this.trySend(payload)
|
||
|
|
|
||
|
|
console.log('sendResult')
|
||
|
|
console.log(sendResult)
|
||
|
|
|
||
|
|
if (sendResult) {
|
||
|
|
if (sendResult.hasError) {
|
||
|
|
throw new Error(sendResult.message || '')
|
||
|
|
}
|
||
|
|
|
||
|
|
const updatedAttempt = await this.prisma.saleInvoiceTspAttempts.update({
|
||
|
|
where: {
|
||
|
|
id: attempt.id,
|
||
|
|
},
|
||
|
|
data: {
|
||
|
|
response_payload: JSON.parse(JSON.stringify(sendResult)),
|
||
|
|
status: sendResult.status,
|
||
|
|
tax_id: sendResult.tax_id,
|
||
|
|
sent_at: sendResult.sent_at,
|
||
|
|
received_at: sendResult.received_at,
|
||
|
|
},
|
||
|
|
select: {
|
||
|
|
status: true,
|
||
|
|
invoice: true,
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
return {
|
||
|
|
...updatedAttempt.invoice,
|
||
|
|
status: updatedAttempt.status,
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
throw new NotFoundException(
|
||
|
|
'متاسفانه امکان ارسال فاکتور به سیستم مالیاتی در حال حاضر وجود ندارد. لطفا بعدا تلاش کنید.',
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
async sendBulk(consumer_id: string, invoice_ids: string[]): Promise<void> {
|
||
|
|
if (!invoice_ids.length) return
|
||
|
|
|
||
|
|
const payloads: TspProviderSendPayloadDto[] = []
|
||
|
|
for (const invoiceId of invoice_ids) {
|
||
|
|
const posId = await this.getPosId(consumer_id, invoiceId)
|
||
|
|
payloads.push(await this.buildPayload(invoiceId, posId))
|
||
|
|
}
|
||
|
|
|
||
|
|
const bulkResult = await this.tspSwitchService.sendBulk(payloads)
|
||
|
|
const allItemResults = bulkResult.flatMap(result => result.items)
|
||
|
|
await this.persistAttemptResults(allItemResults)
|
||
|
|
}
|
||
|
|
|
||
|
|
async get(invoice_id: string, pos_id: string, consumer_id: string): Promise<IAttempt> {
|
||
|
|
const [attempt, pos] = await this.prisma.$transaction(async tx => [
|
||
|
|
await tx.saleInvoiceTspAttempts.findFirst({
|
||
|
|
where: {
|
||
|
|
invoice_id,
|
||
|
|
invoice: {
|
||
|
|
pos: {
|
||
|
|
id: pos_id,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
orderBy: {
|
||
|
|
attempt_no: 'desc',
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
|
||
|
|
await tx.pos.findUnique({
|
||
|
|
where: {
|
||
|
|
id: pos_id,
|
||
|
|
complex: {
|
||
|
|
business_activity: {
|
||
|
|
consumer_id,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
select: {
|
||
|
|
complex: {
|
||
|
|
select: {
|
||
|
|
business_activity: {
|
||
|
|
select: {
|
||
|
|
partner_token: true,
|
||
|
|
consumer: {
|
||
|
|
select: {
|
||
|
|
legal: {
|
||
|
|
select: {
|
||
|
|
partner: {
|
||
|
|
select: {
|
||
|
|
tsp_provider: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
individual: {
|
||
|
|
select: {
|
||
|
|
partner: {
|
||
|
|
select: {
|
||
|
|
tsp_provider: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
])
|
||
|
|
|
||
|
|
if (!attempt) {
|
||
|
|
throw new NotFoundException('صورتحساب ارسالی فاکتور شما به سامانه یافت نشد.')
|
||
|
|
}
|
||
|
|
if (!pos) {
|
||
|
|
throw new NotFoundException('مشکلی در ساختار اطلاعات ورودی شما وجود دارد.')
|
||
|
|
}
|
||
|
|
|
||
|
|
const { business_activity } = pos.complex
|
||
|
|
|
||
|
|
const { partner } = (business_activity.consumer.individual ||
|
||
|
|
business_activity.consumer.legal)!
|
||
|
|
|
||
|
|
const result = await this.tspSwitchService.get(
|
||
|
|
partner.tsp_provider,
|
||
|
|
invoice_id,
|
||
|
|
business_activity.partner_token,
|
||
|
|
)
|
||
|
|
|
||
|
|
console.log('getResult', result)
|
||
|
|
|
||
|
|
if (!result) {
|
||
|
|
throw new NotFoundException('نتیجه ارسال فاکتور یافت نشد.')
|
||
|
|
}
|
||
|
|
|
||
|
|
const updatedAttempt = await this.prisma.saleInvoiceTspAttempts.update({
|
||
|
|
where: {
|
||
|
|
id: attempt.id,
|
||
|
|
},
|
||
|
|
data: {
|
||
|
|
response_payload: JSON.parse(JSON.stringify(result)),
|
||
|
|
status: result.status,
|
||
|
|
received_at: result.received_at,
|
||
|
|
},
|
||
|
|
select: {
|
||
|
|
status: true,
|
||
|
|
invoice: true,
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
return {
|
||
|
|
...updatedAttempt.invoice,
|
||
|
|
status: updatedAttempt.status,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
async update(
|
||
|
|
consumer_id: string,
|
||
|
|
invoice_id: string,
|
||
|
|
dataToUpdate: CreateSalesInvoiceDto,
|
||
|
|
): Promise<IAttempt> {
|
||
|
|
const posId = await this.getPosId(consumer_id, invoice_id)
|
||
|
|
const payload = await this.buildPayload(invoice_id, posId)
|
||
|
|
|
||
|
|
const lastAttempt = await this.prisma.saleInvoiceTspAttempts.findFirst({
|
||
|
|
where: {
|
||
|
|
invoice_id,
|
||
|
|
invoice: {
|
||
|
|
pos: {
|
||
|
|
complex: {
|
||
|
|
business_activity: {
|
||
|
|
consumer_id,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
orderBy: {
|
||
|
|
attempt_no: 'desc',
|
||
|
|
},
|
||
|
|
include: {
|
||
|
|
invoice: {
|
||
|
|
include: {
|
||
|
|
items: {
|
||
|
|
include: {
|
||
|
|
good: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
payments: {
|
||
|
|
include: {
|
||
|
|
terminal_info: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
if (!lastAttempt || lastAttempt?.status === TspProviderResponseStatus.QUEUED) {
|
||
|
|
throw new BadRequestException(
|
||
|
|
'فاکتور هنوز به سامانه مالیاتی ارسال نشده است یا در صف ارسال قرار دارد. لطفا بعدا تلاش کنید.',
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
let isUpdated = false
|
||
|
|
let isBackFromSale = false
|
||
|
|
for (let item of dataToUpdate.items) {
|
||
|
|
const lastAttemptInvoiceItem = lastAttempt.invoice.items.find(
|
||
|
|
prevItem => prevItem.good_id === item.good_id,
|
||
|
|
)
|
||
|
|
if (!lastAttemptInvoiceItem) {
|
||
|
|
isBackFromSale = true
|
||
|
|
break
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (dataToUpdate.total_amount !== lastAttempt.invoice.total_amount.toNumber()) {
|
||
|
|
isUpdated = true
|
||
|
|
}
|
||
|
|
|
||
|
|
const attempt = await this.prisma.saleInvoiceTspAttempts.create({
|
||
|
|
data: {
|
||
|
|
attempt_no: 1,
|
||
|
|
invoice_id,
|
||
|
|
status: TspProviderResponseStatus.QUEUED,
|
||
|
|
type: TspProviderRequestType.MAIN,
|
||
|
|
request_payload: JSON.parse(JSON.stringify(payload)),
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
const sendResult = await this.trySend(payload)
|
||
|
|
|
||
|
|
console.log('sendResult')
|
||
|
|
console.log(sendResult)
|
||
|
|
|
||
|
|
if (sendResult) {
|
||
|
|
if (sendResult.hasError) {
|
||
|
|
throw new Error(sendResult.message || '')
|
||
|
|
}
|
||
|
|
|
||
|
|
const updatedAttempt = await this.prisma.saleInvoiceTspAttempts.update({
|
||
|
|
where: {
|
||
|
|
id: attempt.id,
|
||
|
|
},
|
||
|
|
data: {
|
||
|
|
response_payload: JSON.parse(JSON.stringify(sendResult)),
|
||
|
|
status: sendResult.status,
|
||
|
|
tax_id: sendResult.tax_id,
|
||
|
|
sent_at: sendResult.sent_at,
|
||
|
|
received_at: sendResult.received_at,
|
||
|
|
},
|
||
|
|
select: {
|
||
|
|
status: true,
|
||
|
|
invoice: true,
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
return {
|
||
|
|
...updatedAttempt.invoice,
|
||
|
|
status: updatedAttempt.status,
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
throw new NotFoundException(
|
||
|
|
'متاسفانه امکان ارسال فاکتور به سیستم مالیاتی در حال حاضر وجود ندارد. لطفا بعدا تلاش کنید.',
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private async getPosId(consumer_id: string, invoice_id: string): Promise<string> {
|
||
|
|
const now = new Date()
|
||
|
|
const saleInvoice = await this.prisma.salesInvoice.findUnique({
|
||
|
|
where: {
|
||
|
|
id: invoice_id,
|
||
|
|
pos: {
|
||
|
|
complex: {
|
||
|
|
business_activity: {
|
||
|
|
consumer_id,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
select: {
|
||
|
|
pos: {
|
||
|
|
select: {
|
||
|
|
id: true,
|
||
|
|
complex: {
|
||
|
|
select: {
|
||
|
|
business_activity: {
|
||
|
|
select: {
|
||
|
|
name: true,
|
||
|
|
license_activation: {
|
||
|
|
select: {
|
||
|
|
expires_at: true,
|
||
|
|
license_renews: {
|
||
|
|
select: {
|
||
|
|
expires_at: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
if (!saleInvoice) {
|
||
|
|
throw new NotFoundException('متاسفانه فاکتور مورد نظر یافت نشد.')
|
||
|
|
}
|
||
|
|
|
||
|
|
const { license_activation, name: businessName } =
|
||
|
|
saleInvoice.pos.complex.business_activity
|
||
|
|
let expired = !license_activation || false
|
||
|
|
if (license_activation) {
|
||
|
|
const { expires_at, license_renews } = license_activation
|
||
|
|
if (expires_at < now) {
|
||
|
|
for (const renew of license_renews) {
|
||
|
|
if (renew.expires_at > now) {
|
||
|
|
expired = false
|
||
|
|
break
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (expired) {
|
||
|
|
throw new NotFoundException(`متاسفانه مجوز ${businessName} منقضی شده است.`)
|
||
|
|
}
|
||
|
|
|
||
|
|
return saleInvoice.pos.id
|
||
|
|
}
|
||
|
|
|
||
|
|
private async buildPayload(
|
||
|
|
invoiceId: string,
|
||
|
|
posId: string,
|
||
|
|
): Promise<TspProviderSendPayloadDto> {
|
||
|
|
const invoice = await this.prisma.salesInvoice.findUnique({
|
||
|
|
where: {
|
||
|
|
id: invoiceId,
|
||
|
|
pos_id: posId,
|
||
|
|
},
|
||
|
|
select: {
|
||
|
|
id: true,
|
||
|
|
code: true,
|
||
|
|
total_amount: true,
|
||
|
|
invoice_date: true,
|
||
|
|
invoice_number: true,
|
||
|
|
items: {
|
||
|
|
select: {
|
||
|
|
id: true,
|
||
|
|
quantity: true,
|
||
|
|
unit_price: true,
|
||
|
|
total_amount: true,
|
||
|
|
measure_unit_code: true,
|
||
|
|
measure_unit_text: true,
|
||
|
|
sku_code: true,
|
||
|
|
sku_vat: true,
|
||
|
|
good_id: true,
|
||
|
|
service_id: true,
|
||
|
|
payload: true,
|
||
|
|
good_snapshot: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
pos: {
|
||
|
|
select: {
|
||
|
|
complex: {
|
||
|
|
select: {
|
||
|
|
business_activity: {
|
||
|
|
select: {
|
||
|
|
fiscal_id: true,
|
||
|
|
economic_code: true,
|
||
|
|
partner_token: true,
|
||
|
|
guild: {
|
||
|
|
select: {
|
||
|
|
invoice_template: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
consumer: {
|
||
|
|
select: {
|
||
|
|
legal: {
|
||
|
|
select: {
|
||
|
|
partner: {
|
||
|
|
select: {
|
||
|
|
tsp_provider: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
individual: {
|
||
|
|
select: {
|
||
|
|
partner: {
|
||
|
|
select: {
|
||
|
|
tsp_provider: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
customer: {
|
||
|
|
select: {
|
||
|
|
type: true,
|
||
|
|
individual: {
|
||
|
|
select: {
|
||
|
|
first_name: true,
|
||
|
|
last_name: true,
|
||
|
|
national_id: true,
|
||
|
|
mobile_number: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
legal: {
|
||
|
|
select: {
|
||
|
|
name: true,
|
||
|
|
economic_code: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
payments: {
|
||
|
|
select: {
|
||
|
|
amount: true,
|
||
|
|
payment_method: true,
|
||
|
|
paid_at: true,
|
||
|
|
terminal_info: {
|
||
|
|
select: {
|
||
|
|
stan: true,
|
||
|
|
rrn: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
if (!invoice) {
|
||
|
|
throw new NotFoundException('فاکتور مورد نظر یافت نشد.')
|
||
|
|
}
|
||
|
|
|
||
|
|
const { partner } = (invoice.pos.complex.business_activity.consumer.legal ||
|
||
|
|
invoice.pos.complex.business_activity.consumer.individual)!
|
||
|
|
|
||
|
|
return {
|
||
|
|
invoice_id: invoice.id,
|
||
|
|
invoice_number: invoice.invoice_number,
|
||
|
|
invoice_date: invoice.invoice_date,
|
||
|
|
total_amount: Number(invoice.total_amount),
|
||
|
|
economic_code: invoice.pos.complex.business_activity.economic_code,
|
||
|
|
fiscal_id: invoice.pos.complex.business_activity.fiscal_id,
|
||
|
|
invoice_template: invoice.pos.complex.business_activity.guild.invoice_template,
|
||
|
|
tsp_token: invoice.pos.complex.business_activity.partner_token,
|
||
|
|
payments: invoice.payments.map(payment => ({
|
||
|
|
amount: Number(payment.amount),
|
||
|
|
payment_method: payment.payment_method,
|
||
|
|
paid_at: payment.paid_at,
|
||
|
|
card_number: payment.terminal_info ? payment.terminal_info.stan : undefined,
|
||
|
|
tracking_code: payment.terminal_info ? payment.terminal_info.rrn : undefined,
|
||
|
|
})),
|
||
|
|
type: TspProviderRequestType.MAIN,
|
||
|
|
tsp_provider: partner.tsp_provider!,
|
||
|
|
customer_type: invoice.customer?.type
|
||
|
|
? TspProviderCustomerType.Known
|
||
|
|
: TspProviderCustomerType.Unknown,
|
||
|
|
customer: invoice.customer?.type
|
||
|
|
? {
|
||
|
|
type: invoice.customer.type,
|
||
|
|
legal_info: invoice.customer.legal ?? undefined,
|
||
|
|
individual_info: invoice.customer.individual ?? undefined,
|
||
|
|
}
|
||
|
|
: undefined,
|
||
|
|
items: invoice.items.map(item => ({
|
||
|
|
invoice_item_id: item.id,
|
||
|
|
quantity: Number(item.quantity),
|
||
|
|
unit_price: Number(item.unit_price),
|
||
|
|
total_amount: Number(item.total_amount),
|
||
|
|
measure_unit: item.measure_unit_code,
|
||
|
|
sku: item.sku_code,
|
||
|
|
sku_vat: String(item.sku_vat),
|
||
|
|
discount: String((item.payload as Record<string, any>)?.discount || '0'),
|
||
|
|
good_id: item.good_id,
|
||
|
|
service_id: item.service_id,
|
||
|
|
payload: item.payload,
|
||
|
|
good_snapshot: item.good_snapshot,
|
||
|
|
})),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
private async trySend(
|
||
|
|
payload: TspProviderSendPayloadDto,
|
||
|
|
): Promise<TspProviderSendItemResultDto | null> {
|
||
|
|
const taxResult = await this.tspSwitchService.send(payload)
|
||
|
|
|
||
|
|
return taxResult || null
|
||
|
|
}
|
||
|
|
|
||
|
|
private async persistAttemptResults(
|
||
|
|
itemResults: TspProviderSendItemResultDto[],
|
||
|
|
): Promise<any> {
|
||
|
|
if (!itemResults.length) return
|
||
|
|
|
||
|
|
const attemptsResult = [] as any[]
|
||
|
|
console.log('persistAttemptResults')
|
||
|
|
|
||
|
|
for (const itemResult of itemResults) {
|
||
|
|
const attempt = await this.prisma.$transaction(async tx => {
|
||
|
|
const lastAttempt = await tx.saleInvoiceTspAttempts.findFirst({
|
||
|
|
where: {
|
||
|
|
invoice_id: itemResult.invoice_id,
|
||
|
|
},
|
||
|
|
orderBy: {
|
||
|
|
attempt_no: 'desc',
|
||
|
|
},
|
||
|
|
select: {
|
||
|
|
id: true,
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
const attempt = await tx.saleInvoiceTspAttempts.update({
|
||
|
|
where: {
|
||
|
|
id: lastAttempt!.id,
|
||
|
|
},
|
||
|
|
data: {
|
||
|
|
status: itemResult.status,
|
||
|
|
tax_id: itemResult.tax_id,
|
||
|
|
request_payload: JSON.parse(JSON.stringify(itemResult.request_payload)),
|
||
|
|
response_payload: JSON.parse(JSON.stringify(itemResult.response_payload)),
|
||
|
|
error_message: itemResult.message,
|
||
|
|
sent_at: itemResult.sent_at ? new Date(itemResult.sent_at) : new Date(),
|
||
|
|
received_at: itemResult.received_at
|
||
|
|
? new Date(itemResult.received_at)
|
||
|
|
: new Date(),
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
return attempt
|
||
|
|
})
|
||
|
|
attemptsResult.push(attempt)
|
||
|
|
}
|
||
|
|
|
||
|
|
console.log(attemptsResult)
|
||
|
|
|
||
|
|
return attemptsResult
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// {"type": "MAIN", "items": [{"sku": "2720000044726", "good_id": "01KQHY48M299C9BG2D06DMWK4E", "payload": {"karat": "18", "wages": 40000000, "profit": 48000000, "commission": 40000000}, "sku_vat": "0", "discount": "0", "quantity": 2, "service_id": null, "unit_price": 200000000, "measure_unit": "63", "total_amount": 540800000, "good_snapshot": {"good": {"id": "01KQHY48M299C9BG2D06DMWK4E", "sku": {"id": "01KQHXE2D4XEFSDK4DSV2J6GT2", "VAT": "0", "code": "2720000044726", "name": "گوشواره طلا زیورالات ساخته شده از طلا"}, "name": "گوشواره", "barcode": null, "category": {"id": "01KQHY48CF6X2TK2AG09MKDVKQ", "name": "زیورآلات"}, "image_url": null, "local_sku": null, "measure_unit": {"id": "01KQHY489HE02787SE8TWDE18S", "code": "63", "name": "گرم"}, "pricing_model": "GOLD", "base_sale_price": "0"}}, "invoice_item_id": "01KQMZTMDC4M4T7VE9GFZJEW4E"}], "payments": [{"amount": 540800000, "paid_at": "2026-05-02T18:39:46.000Z", "payment_method": "CASH"}], "fiscal_id": "A296T3", "tsp_token": "pfFE6QxOJxUIhzkpUCPWYMR5", "invoice_id": "98c3377d-4e42-4703-97f0-38c3b3c8e87f", "invoice_date": "2026-05-02T18:39:46.000Z", "total_amount": 540800000, "tsp_provider": "NAMA", "customer_type": "Unknown", "economic_code": "14003579468", "invoice_number": 13, "invoice_template": "GOLD_JEWELRY"}
|