init.js revisited (#538)
* init.js revisited * Reverting rm sqlite3 * . --------- Co-authored-by: Johannes Vogel <31311694+johannes-vogel@users.noreply.github.com>
This commit is contained in:
@@ -4,11 +4,10 @@
|
|||||||
* currencies, if not obtained through @capire/common.
|
* currencies, if not obtained through @capire/common.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = async (tx)=>{
|
// NOTE: We use cds.on('served') to delay the UPSERTs after the db init
|
||||||
const has_common = tx.model.definitions['sap.common.Currencies']?.elements.numcode
|
// to run after all INSERTs from .csv files happened.
|
||||||
if (has_common) return
|
module.exports = cds.on('served', ()=> cds.run(
|
||||||
|
UPSERT.into ('sap.common.Currencies') .columns (
|
||||||
await UPSERT.into ('sap.common.Currencies') .columns (
|
|
||||||
[ 'code', 'symbol', 'name' ]
|
[ 'code', 'symbol', 'name' ]
|
||||||
) .rows (
|
) .rows (
|
||||||
[ 'EUR', '€', 'Euro' ],
|
[ 'EUR', '€', 'Euro' ],
|
||||||
@@ -17,4 +16,4 @@ module.exports = async (tx)=>{
|
|||||||
[ 'ILS', '₪', 'Shekel' ],
|
[ 'ILS', '₪', 'Shekel' ],
|
||||||
[ 'JPY', '¥', 'Yen' ],
|
[ 'JPY', '¥', 'Yen' ],
|
||||||
)
|
)
|
||||||
}
|
))
|
||||||
|
|||||||
Reference in New Issue
Block a user