refactor: change invoice id by refFk
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
cb3e488df9
commit
699f19b0d4
|
@ -61,7 +61,6 @@ module.exports = Self => {
|
||||||
responseType: 'stream',
|
responseType: 'stream',
|
||||||
params: {
|
params: {
|
||||||
authorization: auth.id,
|
authorization: auth.id,
|
||||||
invoiceId: id,
|
|
||||||
refFk: invoiceOut.ref
|
refFk: invoiceOut.ref
|
||||||
}
|
}
|
||||||
}).then(async response => {
|
}).then(async response => {
|
||||||
|
|
|
@ -84,7 +84,7 @@ class Controller extends Section {
|
||||||
showCsvInvoice() {
|
showCsvInvoice() {
|
||||||
this.vnReport.showCsv('invoice', {
|
this.vnReport.showCsv('invoice', {
|
||||||
recipientId: this.invoiceOut.client.id,
|
recipientId: this.invoiceOut.client.id,
|
||||||
invoiceId: this.id
|
refFk: this.invoiceOut.ref
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ class Controller extends Section {
|
||||||
return this.vnEmail.send('invoice', {
|
return this.vnEmail.send('invoice', {
|
||||||
recipientId: this.invoiceOut.client.id,
|
recipientId: this.invoiceOut.client.id,
|
||||||
recipient: $data.email,
|
recipient: $data.email,
|
||||||
invoiceId: this.id
|
refFk: this.invoiceOut.ref
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,14 +106,14 @@ class Controller extends Section {
|
||||||
return this.vnEmail.sendCsv('invoice', {
|
return this.vnEmail.sendCsv('invoice', {
|
||||||
recipientId: this.invoiceOut.client.id,
|
recipientId: this.invoiceOut.client.id,
|
||||||
recipient: $data.email,
|
recipient: $data.email,
|
||||||
invoiceId: this.id
|
refFk: this.invoiceOut.ref
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
showExportationLetter() {
|
showExportationLetter() {
|
||||||
this.vnReport.show('exportation', {
|
this.vnReport.show('exportation', {
|
||||||
recipientId: this.invoiceOut.client.id,
|
recipientId: this.invoiceOut.client.id,
|
||||||
invoiceId: this.id
|
refFk: this.invoiceOut.ref
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ module.exports = {
|
||||||
|
|
||||||
if (invoiceOut) {
|
if (invoiceOut) {
|
||||||
const args = Object.assign({
|
const args = Object.assign({
|
||||||
invoiceId: invoiceOut.id,
|
refFk: invoiceOut.ref,
|
||||||
recipientId: ticket.clientFk,
|
recipientId: ticket.clientFk,
|
||||||
recipient: ticket.recipient,
|
recipient: ticket.recipient,
|
||||||
replyTo: ticket.salesPersonEmail
|
replyTo: ticket.salesPersonEmail
|
||||||
|
@ -118,7 +118,7 @@ module.exports = {
|
||||||
|
|
||||||
await db.rawSql(`
|
await db.rawSql(`
|
||||||
INSERT INTO clientSample (clientFk, typeFk, companyFk) VALUES(?, ?, ?)
|
INSERT INTO clientSample (clientFk, typeFk, companyFk) VALUES(?, ?, ?)
|
||||||
`, [ticket.clientFk, sample.id, ticket.companyFk])
|
`, [ticket.clientFk, sample.id, ticket.companyFk]);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Domain not found
|
// Domain not found
|
||||||
|
|
|
@ -7,13 +7,13 @@ const sqlPath = path.join(__dirname, 'sql');
|
||||||
module.exports = async function(request, response, next) {
|
module.exports = async function(request, response, next) {
|
||||||
try {
|
try {
|
||||||
const reqArgs = request.query;
|
const reqArgs = request.query;
|
||||||
if (!reqArgs.invoiceId)
|
if (!reqArgs.refFk)
|
||||||
throw new Error('The argument invoiceId is required');
|
throw new Error('The argument refFk is required');
|
||||||
|
|
||||||
const invoiceId = reqArgs.invoiceId;
|
const refFk = reqArgs.refFk;
|
||||||
const sales = await db.rawSqlFromDef(`${sqlPath}/sales`, [invoiceId]);
|
const sales = await db.rawSqlFromDef(`${sqlPath}/sales`, [refFk]);
|
||||||
const content = toCSV(sales);
|
const content = toCSV(sales);
|
||||||
const fileName = `invoice_${invoiceId}.csv`;
|
const fileName = `invoice_${refFk}.csv`;
|
||||||
|
|
||||||
response.setHeader('Content-type', 'text/csv');
|
response.setHeader('Content-type', 'text/csv');
|
||||||
response.setHeader('Content-Disposition', `inline; filename="${fileName}"`);
|
response.setHeader('Content-Disposition', `inline; filename="${fileName}"`);
|
||||||
|
|
|
@ -8,22 +8,22 @@ const sqlPath = path.join(__dirname, 'sql');
|
||||||
module.exports = async function(request, response, next) {
|
module.exports = async function(request, response, next) {
|
||||||
try {
|
try {
|
||||||
const reqArgs = request.query;
|
const reqArgs = request.query;
|
||||||
if (!reqArgs.invoiceId)
|
if (!reqArgs.refFk)
|
||||||
throw new Error('The argument invoiceId is required');
|
throw new Error('The argument refFk is required');
|
||||||
|
|
||||||
const invoiceId = reqArgs.invoiceId;
|
const refFk = reqArgs.refFk;
|
||||||
const invoice = await db.findOneFromDef(`${sqlPath}/invoice`, [invoiceId]);
|
const invoice = await db.findOneFromDef(`${sqlPath}/invoice`, [refFk]);
|
||||||
const sales = await db.rawSqlFromDef(`${sqlPath}/sales`, [invoiceId]);
|
const sales = await db.rawSqlFromDef(`${sqlPath}/sales`, [refFk]);
|
||||||
|
|
||||||
const args = Object.assign({
|
const args = Object.assign({
|
||||||
invoiceId: (String(invoice.id)),
|
refFk: invoice.refFk,
|
||||||
recipientId: invoice.clientFk,
|
recipientId: invoice.clientFk,
|
||||||
recipient: invoice.recipient,
|
recipient: invoice.recipient,
|
||||||
replyTo: invoice.salesPersonEmail
|
replyTo: invoice.salesPersonEmail
|
||||||
}, response.locals);
|
}, response.locals);
|
||||||
|
|
||||||
const content = toCSV(sales);
|
const content = toCSV(sales);
|
||||||
const fileName = `invoice_${invoiceId}.csv`;
|
const fileName = `invoice_${refFk}.csv`;
|
||||||
const email = new Email('invoice', args);
|
const email = new Email('invoice', args);
|
||||||
await email.send({
|
await email.send({
|
||||||
overrideAttachments: true,
|
overrideAttachments: true,
|
||||||
|
|
|
@ -6,4 +6,5 @@ SELECT
|
||||||
FROM invoiceOut io
|
FROM invoiceOut io
|
||||||
JOIN client c ON c.id = io.clientFk
|
JOIN client c ON c.id = io.clientFk
|
||||||
LEFT JOIN account.emailUser eu ON eu.userFk = c.salesPersonFk
|
LEFT JOIN account.emailUser eu ON eu.userFk = c.salesPersonFk
|
||||||
WHERE io.id = ?
|
LEFT JOIN ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
|
@ -31,5 +31,5 @@ FROM sale s
|
||||||
AND itc.countryFk = s2.countryFk
|
AND itc.countryFk = s2.countryFk
|
||||||
JOIN taxClass tc ON tc.id = itc.taxClassFk
|
JOIN taxClass tc ON tc.id = itc.taxClassFk
|
||||||
JOIN invoiceOut io ON io.ref = t.refFk
|
JOIN invoiceOut io ON io.ref = t.refFk
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
||||||
ORDER BY s.ticketFk, s.created
|
ORDER BY s.ticketFk, s.created
|
|
@ -38,7 +38,7 @@ module.exports = async function(request, response, next) {
|
||||||
connection.query('START TRANSACTION');
|
connection.query('START TRANSACTION');
|
||||||
|
|
||||||
const args = Object.assign({
|
const args = Object.assign({
|
||||||
invoiceId: invoiceOut.id,
|
refFk: invoiceOut.ref,
|
||||||
recipientId: invoiceOut.clientFk,
|
recipientId: invoiceOut.clientFk,
|
||||||
recipient: invoiceOut.recipient,
|
recipient: invoiceOut.recipient,
|
||||||
replyTo: invoiceOut.salesPersonEmail
|
replyTo: invoiceOut.salesPersonEmail
|
||||||
|
|
|
@ -5,11 +5,11 @@ const emailFooter = new Component('email-footer');
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'invoice',
|
name: 'invoice',
|
||||||
async serverPrefetch() {
|
async serverPrefetch() {
|
||||||
this.invoice = await this.fetchInvoice(this.invoiceId);
|
this.invoice = await this.fetchInvoice(this.refFk);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
fetchInvoice(invoiceId) {
|
fetchInvoice(refFk) {
|
||||||
return this.findOneFromDef('invoice', [invoiceId]);
|
return this.findOneFromDef('invoice', [refFk]);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
@ -17,7 +17,7 @@ module.exports = {
|
||||||
'email-footer': emailFooter.build()
|
'email-footer': emailFooter.build()
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
invoiceId: {
|
refFk: {
|
||||||
type: [Number, String],
|
type: [Number, String],
|
||||||
required: true
|
required: true
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,4 +4,4 @@ SELECT
|
||||||
FROM invoiceOut io
|
FROM invoiceOut io
|
||||||
JOIN ticket t ON t.refFk = io.ref
|
JOIN ticket t ON t.refFk = io.ref
|
||||||
JOIN client c ON c.id = io.clientFk
|
JOIN client c ON c.id = io.clientFk
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
|
@ -5,14 +5,14 @@ const reportFooter = new Component('report-footer');
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'exportation',
|
name: 'exportation',
|
||||||
async serverPrefetch() {
|
async serverPrefetch() {
|
||||||
this.invoice = await this.fetchInvoice(this.invoiceId);
|
this.invoice = await this.fetchInvoice(this.refFk);
|
||||||
|
|
||||||
if (!this.invoice)
|
if (!this.invoice)
|
||||||
throw new Error('Something went wrong');
|
throw new Error('Something went wrong');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
fetchInvoice(invoiceId) {
|
fetchInvoice(refFk) {
|
||||||
return this.findOneFromDef('invoice', [invoiceId]);
|
return this.findOneFromDef('invoice', [refFk]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -27,7 +27,7 @@ module.exports = {
|
||||||
'report-footer': reportFooter.build()
|
'report-footer': reportFooter.build()
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
invoiceId: {
|
refFk: {
|
||||||
type: [Number, String],
|
type: [Number, String],
|
||||||
required: true
|
required: true
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,4 +3,5 @@ SELECT
|
||||||
io.ref,
|
io.ref,
|
||||||
io.issued
|
io.issued
|
||||||
FROM invoiceOut io
|
FROM invoiceOut io
|
||||||
WHERE io.id = ?
|
LEFT JOIN ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
|
@ -5,9 +5,9 @@ const reportFooter = new Component('report-footer');
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'invoice-incoterms',
|
name: 'invoice-incoterms',
|
||||||
async serverPrefetch() {
|
async serverPrefetch() {
|
||||||
this.invoice = await this.fetchInvoice(this.invoiceId);
|
this.invoice = await this.fetchInvoice(this.refFk);
|
||||||
this.client = await this.fetchClient(this.invoiceId);
|
this.client = await this.fetchClient(this.refFk);
|
||||||
this.incoterms = await this.fetchIncoterms(this.invoiceId);
|
this.incoterms = await this.fetchIncoterms(this.refFk);
|
||||||
|
|
||||||
if (!this.invoice)
|
if (!this.invoice)
|
||||||
throw new Error('Something went wrong');
|
throw new Error('Something went wrong');
|
||||||
|
@ -16,14 +16,14 @@ module.exports = {
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
fetchInvoice(invoiceId) {
|
fetchInvoice(refFk) {
|
||||||
return this.findOneFromDef('invoice', [invoiceId]);
|
return this.findOneFromDef('invoice', [refFk]);
|
||||||
},
|
},
|
||||||
fetchClient(invoiceId) {
|
fetchClient(refFk) {
|
||||||
return this.findOneFromDef('client', [invoiceId]);
|
return this.findOneFromDef('client', [refFk]);
|
||||||
},
|
},
|
||||||
fetchIncoterms(invoiceId) {
|
fetchIncoterms(refFk) {
|
||||||
return this.findOneFromDef('incoterms', [invoiceId, invoiceId, invoiceId]);
|
return this.findOneFromDef('incoterms', [refFk, refFk, refFk]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
@ -31,7 +31,7 @@ module.exports = {
|
||||||
'report-footer': reportFooter.build()
|
'report-footer': reportFooter.build()
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
invoiceId: {
|
refFk: {
|
||||||
type: [Number, String],
|
type: [Number, String],
|
||||||
required: true
|
required: true
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,4 +9,5 @@ FROM vn.invoiceOut io
|
||||||
JOIN vn.country cty ON cty.id = c.countryFk
|
JOIN vn.country cty ON cty.id = c.countryFk
|
||||||
LEFT JOIN vn.invoiceOutSerial ios ON ios.code = io.serial
|
LEFT JOIN vn.invoiceOutSerial ios ON ios.code = io.serial
|
||||||
AND ios.taxAreaFk = 'CEE'
|
AND ios.taxAreaFk = 'CEE'
|
||||||
WHERE io.id = ?
|
LEFT JOIN ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
|
@ -51,7 +51,7 @@ SELECT io.issued,
|
||||||
FROM vn.invoiceOut io
|
FROM vn.invoiceOut io
|
||||||
JOIN vn.ticket t ON t.refFk = io.ref
|
JOIN vn.ticket t ON t.refFk = io.ref
|
||||||
JOIN vn.saleVolume sv ON sv.ticketFk = t.id
|
JOIN vn.saleVolume sv ON sv.ticketFk = t.id
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
||||||
) sub2 ON TRUE
|
) sub2 ON TRUE
|
||||||
JOIN vn.itemTaxCountry itc ON itc.countryFk = su.countryFk AND itc.itemFk = s.itemFk
|
JOIN vn.itemTaxCountry itc ON itc.countryFk = su.countryFk AND itc.itemFk = s.itemFk
|
||||||
JOIN vn.taxClass tc ON tc.id = itc.taxClassFk
|
JOIN vn.taxClass tc ON tc.id = itc.taxClassFk
|
||||||
|
@ -66,6 +66,7 @@ SELECT io.issued,
|
||||||
JOIN vn.sale s ON t.id = s.ticketFk
|
JOIN vn.sale s ON t.id = s.ticketFk
|
||||||
JOIN vn.item i ON i.id = s.itemFk
|
JOIN vn.item i ON i.id = s.itemFk
|
||||||
JOIN vn.intrastat ir ON ir.id = i.intrastatFk
|
JOIN vn.intrastat ir ON ir.id = i.intrastatFk
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
||||||
)sub3 ON TRUE
|
)sub3 ON TRUE
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,5 @@ FROM invoiceOut io
|
||||||
JOIN company cny ON cny.id = io.companyFk
|
JOIN company cny ON cny.id = io.companyFk
|
||||||
JOIN supplierAccount sa ON sa.id = cny.supplierAccountFk
|
JOIN supplierAccount sa ON sa.id = cny.supplierAccountFk
|
||||||
LEFT JOIN invoiceOutSerial ios ON ios.code = io.serial
|
LEFT JOIN invoiceOutSerial ios ON ios.code = io.serial
|
||||||
WHERE io.id = ?
|
LEFT JOIN ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
|
@ -7,15 +7,15 @@ const invoiceIncoterms = new Report('invoice-incoterms');
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'invoice',
|
name: 'invoice',
|
||||||
async serverPrefetch() {
|
async serverPrefetch() {
|
||||||
this.invoice = await this.fetchInvoice(this.invoiceId);
|
this.invoice = await this.fetchInvoice(this.refFk);
|
||||||
this.client = await this.fetchClient(this.invoiceId);
|
this.client = await this.fetchClient(this.refFk);
|
||||||
this.taxes = await this.fetchTaxes(this.invoiceId);
|
this.taxes = await this.fetchTaxes(this.refFk);
|
||||||
this.intrastat = await this.fetchIntrastat(this.refFk);
|
this.intrastat = await this.fetchIntrastat(this.refFk);
|
||||||
this.rectified = await this.fetchRectified(this.invoiceId);
|
this.rectified = await this.fetchRectified(this.refFk);
|
||||||
this.hasIncoterms = await this.fetchHasIncoterms(this.invoiceId);
|
this.hasIncoterms = await this.fetchHasIncoterms(this.refFk);
|
||||||
|
|
||||||
const tickets = await this.fetchTickets(this.invoiceId);
|
const tickets = await this.fetchTickets(this.refFk);
|
||||||
const sales = await this.fetchSales(this.invoiceId);
|
const sales = await this.fetchSales(this.refFk);
|
||||||
|
|
||||||
const map = new Map();
|
const map = new Map();
|
||||||
|
|
||||||
|
@ -65,29 +65,29 @@ module.exports = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
fetchInvoice(invoiceId) {
|
fetchInvoice(refFk) {
|
||||||
return this.findOneFromDef('invoice', [invoiceId]);
|
return this.findOneFromDef('invoice', [refFk]);
|
||||||
},
|
},
|
||||||
fetchClient(invoiceId) {
|
fetchClient(refFk) {
|
||||||
return this.findOneFromDef('client', [invoiceId]);
|
return this.findOneFromDef('client', [refFk]);
|
||||||
},
|
},
|
||||||
fetchTickets(invoiceId) {
|
fetchTickets(refFk) {
|
||||||
return this.rawSqlFromDef('tickets', [invoiceId]);
|
return this.rawSqlFromDef('tickets', [refFk]);
|
||||||
},
|
},
|
||||||
fetchSales(invoiceId) {
|
fetchSales(refFk) {
|
||||||
return this.rawSqlFromDef('sales', [invoiceId, invoiceId]);
|
return this.rawSqlFromDef('sales', [refFk, refFk]);
|
||||||
},
|
},
|
||||||
fetchTaxes(invoiceId) {
|
fetchTaxes(refFk) {
|
||||||
return this.rawSqlFromDef(`taxes`, [invoiceId]);
|
return this.rawSqlFromDef(`taxes`, [refFk]);
|
||||||
},
|
},
|
||||||
fetchIntrastat(refFk) {
|
fetchIntrastat(refFk) {
|
||||||
return this.rawSqlFromDef(`intrastat`, [refFk, refFk, refFk]);
|
return this.rawSqlFromDef(`intrastat`, [refFk, refFk, refFk]);
|
||||||
},
|
},
|
||||||
fetchRectified(invoiceId) {
|
fetchRectified(refFk) {
|
||||||
return this.rawSqlFromDef(`rectified`, [invoiceId]);
|
return this.rawSqlFromDef(`rectified`, [refFk]);
|
||||||
},
|
},
|
||||||
fetchHasIncoterms(invoiceId) {
|
fetchHasIncoterms(refFk) {
|
||||||
return this.findValueFromDef(`hasIncoterms`, [invoiceId]);
|
return this.findValueFromDef(`hasIncoterms`, [refFk]);
|
||||||
},
|
},
|
||||||
saleImport(sale) {
|
saleImport(sale) {
|
||||||
const price = sale.quantity * sale.price;
|
const price = sale.quantity * sale.price;
|
||||||
|
@ -115,10 +115,6 @@ module.exports = {
|
||||||
'invoice-incoterms': invoiceIncoterms.build()
|
'invoice-incoterms': invoiceIncoterms.build()
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
invoiceId: {
|
|
||||||
type: [Number, String],
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
refFk: {
|
refFk: {
|
||||||
type: String
|
type: String
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,4 +9,5 @@ FROM vn.invoiceOut io
|
||||||
JOIN vn.country cty ON cty.id = c.countryFk
|
JOIN vn.country cty ON cty.id = c.countryFk
|
||||||
LEFT JOIN vn.invoiceOutSerial ios ON ios.code = io.serial
|
LEFT JOIN vn.invoiceOutSerial ios ON ios.code = io.serial
|
||||||
AND ios.taxAreaFk = 'CEE'
|
AND ios.taxAreaFk = 'CEE'
|
||||||
WHERE io.id = ?
|
LEFT JOIN vn.ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
|
@ -3,6 +3,6 @@ SELECT IF(incotermsFk IS NULL, FALSE, TRUE) AS hasIncoterms
|
||||||
JOIN invoiceOut io ON io.ref = t.refFk
|
JOIN invoiceOut io ON io.ref = t.refFk
|
||||||
JOIN client c ON c.id = t.clientFk
|
JOIN client c ON c.id = t.clientFk
|
||||||
JOIN address a ON a.id = t.addressFk
|
JOIN address a ON a.id = t.addressFk
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
||||||
AND IF(c.hasToinvoiceByAddress = FALSE, c.defaultAddressFk, TRUE)
|
AND IF(c.hasToinvoiceByAddress = FALSE, c.defaultAddressFk, TRUE)
|
||||||
LIMIT 1
|
LIMIT 1
|
|
@ -13,4 +13,5 @@ FROM invoiceOut io
|
||||||
JOIN company cny ON cny.id = io.companyFk
|
JOIN company cny ON cny.id = io.companyFk
|
||||||
JOIN supplierAccount sa ON sa.id = cny.supplierAccountFk
|
JOIN supplierAccount sa ON sa.id = cny.supplierAccountFk
|
||||||
LEFT JOIN invoiceOutSerial ios ON ios.code = io.serial
|
LEFT JOIN invoiceOutSerial ios ON ios.code = io.serial
|
||||||
WHERE io.id = ?
|
LEFT JOIN ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
|
@ -6,4 +6,5 @@ SELECT
|
||||||
FROM vn.invoiceCorrection ic
|
FROM vn.invoiceCorrection ic
|
||||||
JOIN vn.invoiceOut io ON io.id = ic.correctedFk
|
JOIN vn.invoiceOut io ON io.id = ic.correctedFk
|
||||||
JOIN vn.invoiceCorrectionType ict ON ict.id = ic.invoiceCorrectionTypeFk
|
JOIN vn.invoiceCorrectionType ict ON ict.id = ic.invoiceCorrectionTypeFk
|
||||||
where ic.correctingFk = ?
|
LEFT JOIN ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
|
@ -37,7 +37,7 @@ SELECT
|
||||||
JOIN vn.itemTaxCountry itc ON itc.countryFk = su.countryFk
|
JOIN vn.itemTaxCountry itc ON itc.countryFk = su.countryFk
|
||||||
AND itc.itemFk = s.itemFk
|
AND itc.itemFk = s.itemFk
|
||||||
JOIN vn.taxClass tc ON tc.id = itc.taxClassFk
|
JOIN vn.taxClass tc ON tc.id = itc.taxClassFk
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
||||||
UNION ALL
|
UNION ALL
|
||||||
SELECT
|
SELECT
|
||||||
io.ref,
|
io.ref,
|
||||||
|
@ -69,4 +69,4 @@ SELECT
|
||||||
JOIN vn.company co ON co.id = io.companyFk
|
JOIN vn.company co ON co.id = io.companyFk
|
||||||
JOIN vn.supplierAccount sa ON sa.id = co.supplierAccountFk
|
JOIN vn.supplierAccount sa ON sa.id = co.supplierAccountFk
|
||||||
JOIN vn.taxClass tc ON tc.id = ts.taxClassFk
|
JOIN vn.taxClass tc ON tc.id = ts.taxClassFk
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
|
@ -6,6 +6,7 @@ SELECT
|
||||||
FROM invoiceOutTax iot
|
FROM invoiceOutTax iot
|
||||||
JOIN pgc ON pgc.code = iot.pgcFk
|
JOIN pgc ON pgc.code = iot.pgcFk
|
||||||
LEFT JOIN pgcEqu pe ON pe.equFk = pgc.code
|
LEFT JOIN pgcEqu pe ON pe.equFk = pgc.code
|
||||||
JOIN invoiceOut io ON io.id = iot.invoiceOutFk
|
JOIN invoiceOut io ON io.id = iot.invoiceOutFk
|
||||||
WHERE invoiceOutFk = ?
|
LEFT JOIN ticket t ON t.refFk = io.ref
|
||||||
|
WHERE t.refFk = ?
|
||||||
ORDER BY iot.id
|
ORDER BY iot.id
|
|
@ -4,5 +4,5 @@ SELECT
|
||||||
t.nickname
|
t.nickname
|
||||||
FROM invoiceOut io
|
FROM invoiceOut io
|
||||||
JOIN ticket t ON t.refFk = io.ref
|
JOIN ticket t ON t.refFk = io.ref
|
||||||
WHERE io.id = ?
|
WHERE t.refFk = ?
|
||||||
ORDER BY t.shipped
|
ORDER BY t.shipped
|
Loading…
Reference in New Issue