parent
5a5032f6e6
commit
68158f341d
|
@ -1,4 +1,3 @@
|
||||||
const {ParameterizedSQL} = require('loopback-connector');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethod('negativeOrigin', {
|
Self.remoteMethod('negativeOrigin', {
|
||||||
|
@ -27,10 +26,7 @@ module.exports = Self => {
|
||||||
tx = await Self.beginTransaction({});
|
tx = await Self.beginTransaction({});
|
||||||
myOptions.transaction = tx;
|
myOptions.transaction = tx;
|
||||||
}
|
}
|
||||||
const conn = Self.dataSource.connector;
|
const negativesOrigin = await Self.app.models.NegativeOrigin.find();
|
||||||
const stmts = ['SELECT * FROM vn.negativeOrigin'];
|
return negativesOrigin;
|
||||||
const sql = ParameterizedSQL.join(stmts, ';');
|
|
||||||
const result = await conn.executeStmt(sql, myOptions);
|
|
||||||
return result;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,6 +35,9 @@
|
||||||
"PackingSiteConfig": {
|
"PackingSiteConfig": {
|
||||||
"dataSource": "vn"
|
"dataSource": "vn"
|
||||||
},
|
},
|
||||||
|
"NegativeOrigin": {
|
||||||
|
"dataSource": "vn"
|
||||||
|
},
|
||||||
"ExpeditionMistake": {
|
"ExpeditionMistake": {
|
||||||
"dataSource": "vn"
|
"dataSource": "vn"
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"name": "NegativeOrigin",
|
||||||
|
"base": "VnModel",
|
||||||
|
"options": {
|
||||||
|
"mysql": {
|
||||||
|
"table": "negativeOrigin"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"id": true,
|
||||||
|
"type": "number",
|
||||||
|
"description": "Identifier"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"relations": {
|
||||||
|
"item": {
|
||||||
|
"type": "belongsTo",
|
||||||
|
"model": "Item",
|
||||||
|
"foreignKey": "itemFk"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue