itenium-be / confac

Consultant invoicing: React frontend, Express backend
MIT License
8 stars 6 forks source link

Deploy peppol #286

Open JochemVH1 opened 4 months ago

JochemVH1 commented 4 months ago

Zeker mee uit te voeren bij live gang peppol:

1) Postcode en land opsplitsen connection string invullen van prod mongo: Ik ga er hier van uit dat de postcode alleen maar cijfers bevatten indien dit niet zo is dan moeten in beide scripts de regex aangepast worden Ook checken dat in de bestaande clients and invoices.client het eerst postalcode is en dan city, anders gaat de regex ook aangepast moeten worden

Mongo script voor het aanpassen van de client in de bestaande invoices:

const connectionString = '';
db = connect(connectionString);

db.invoices.find().forEach((doc) => {
    const input = doc.client.city;
    const regex = /^(\d+)\s(.+)$/;
    const result = input.match(regex);

    if (result) {
        const postalCode = result[1];
        const city = result[2];
        const filter= {_id: doc._id};
        const update = { $set: { 'client.city': city, 'client.postalCode': postalCode }}
        db.invoices.updateOne(filter, update)
    } else {
        console.log('Could not match client city for invoice'.concat(doc._id));
    }
})

Mongo script voor het aanpassen van de bestaande clients:

const connectionString = '';
db = connect(connectionString);

db.clients.find().forEach((doc) => {
    const input = doc.city;
    const regex = /^(\d+)\s(.+)$/;
    const result = input.match(regex);

    if (result) {
        const postalCode = result[1];
        const city = result[2];
        const filter= {_id: doc._id};
        const update = { $set: { 'city': city, 'postalCode': postalCode }}
        db.clients.updateOne(filter, update)
    } else {
        console.log('Could not match client city for invoice'.concat(doc._id));
    }
})

Mongo script voor het aanpassen van your company in de bestaande invoices:

const connectionString = '';
db = connect(connectionString);

db.invoices.find().forEach((doc) => {
    const input = doc.your.city;
    if(input){
        const regex = /^(\d+)\s(.+)$/;
        const result = input.match(regex);
        if (result) {
            const postalCode = result[1];
            const city = result[2];
            const filter= {_id: doc._id};
            const update = { $set: { 'your.city': city, 'your.postalCode': postalCode }}
            db.invoices.updateOne(filter, update)
        } else {
            console.log('Could not match client city for invoice'.concat(doc._id));
        } 
    }
})

2) Nieuwe setting voor de factuur datum moet ingesteld worden voor de bestaande klanten en config