Harun Kilic
Harun Kilic
 An example of how big a job can be.
For temporary fix within a Job, this is what i do: ``` ctx.session.user.channelPermissions = ctx.session.user.channelPermissions.filter( (x) => x.code === '__default_channel__' ); return this.jobQueue.add( { ctx: ctx.serialize() }, { retries: 2...
I've managed to get the ui part working by: * Removing `--base-path=${basePath}` from `\node_modules\@vendure\ui-devkit\compiler\compile.js` as its deprecated now. * Changed `"baseHref": "/",` in `\admin-ui\angular.json` to `"baseHref": "/admin/",` The app will...
Just to sum up for a temporary solution: 1. Remove `--base-href=${baseHref}` from `\node_modules\@vendure\ui-devkit\compiler\compile.js` on line `99` 2. Change `"baseHref": "/"`, in `\admin-ui\angular.json` to `"baseHref": "/admin/"` (you will have to run...
To make this a permanent solution, the `--base-href` in the cli should be added to angular.json with dynamic values somehow.
It would be awesome with more modern frontend like Blazor or React/Vue/Angular.
I am creating an B2B ecommerce, where the usecase looks like: 1. A **customer** joins a **customer group** (companies) 2. The **customer** can make orders on behalf of the **customer...
Hi Michael, Thanks for quick response! The problem is that there can be multiple entries per item. So that it will be item * item discount + item * customer...
I have an idea of how i will solve it. I don't know if there is any edge cases or if it's possible to integrate in core. But feedback would...
This is amazing @michaelbromley! A nice starter point. But what if the admin wants to provide single shipment and/or payment method? So that the payment would go to the highest...