MASTER-fix(invoiceIn_descriptor): supplier.email #1307
|
@ -94,11 +94,6 @@
|
||||||
"model": "Supplier",
|
"model": "Supplier",
|
||||||
"foreignKey": "supplierFk"
|
"foreignKey": "supplierFk"
|
||||||
},
|
},
|
||||||
"supplierContact": {
|
|
||||||
"type": "hasMany",
|
|
||||||
"model": "SupplierContact",
|
|
||||||
"foreignKey": "supplierFk"
|
|
||||||
},
|
|
||||||
"currency": {
|
"currency": {
|
||||||
"type": "belongsTo",
|
"type": "belongsTo",
|
||||||
"model": "Currency",
|
"model": "Currency",
|
||||||
|
|
|
@ -6,13 +6,15 @@ class Controller extends ModuleCard {
|
||||||
const filter = {
|
const filter = {
|
||||||
include: [
|
include: [
|
||||||
{
|
{
|
||||||
relation: 'supplier'
|
relation: 'supplier',
|
||||||
},
|
|
||||||
{
|
|
||||||
relation: 'supplierContact',
|
|
||||||
scope: {
|
scope: {
|
||||||
where: {
|
include: {
|
||||||
email: {neq: null}
|
relation: 'contacts',
|
||||||
|
scope: {
|
||||||
|
where: {
|
||||||
|
email: {neq: null},
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
</vn-item>
|
</vn-item>
|
||||||
<vn-item
|
<vn-item
|
||||||
ng-if="$ctrl.isAgricultural()"
|
ng-if="$ctrl.isAgricultural()"
|
||||||
ng-click="sendPdfConfirmation.show({email: $ctrl.entity.supplierContact[0].email})"
|
ng-click="sendPdfConfirmation.show({email: $ctrl.entity.supplier.contacts[0].email})"
|
||||||
translate>
|
translate>
|
||||||
Send agricultural receipt as PDF
|
Send agricultural receipt as PDF
|
||||||
</vn-item>
|
</vn-item>
|
||||||
|
|
Loading…
Reference in New Issue