removing batch info from the url (#116)
* removing batch info from the url * small CR changes Co-authored-by: Sreeraj Rajendran Nair <sreeraj.rajendran@photowall.com>
This commit is contained in:
co-authored by
Sreeraj Rajendran Nair
parent
eeb69fe5f0
commit
b2fa2f7d8a
@@ -393,7 +393,7 @@ export class ProductAPI extends BaseSQLDataSource {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @function addProduct
|
* @function addProduct
|
||||||
* @description Adds a new product to system, will use batchname and name to
|
* @description Adds a new product to system, will use name to
|
||||||
* set a unique path, artNo is the productId with e infront.
|
* set a unique path, artNo is the productId with e infront.
|
||||||
*/
|
*/
|
||||||
async addProduct(
|
async addProduct(
|
||||||
@@ -402,8 +402,7 @@ export class ProductAPI extends BaseSQLDataSource {
|
|||||||
designerId: number,
|
designerId: number,
|
||||||
): Promise<number> {
|
): Promise<number> {
|
||||||
const fixedBatch = !!batch ? batch : '';
|
const fixedBatch = !!batch ? batch : '';
|
||||||
const path = batch ? fixedBatch + ' ' + name : name;
|
const productPath = slug(name);
|
||||||
const productPath = slug(path);
|
|
||||||
const safePath = await this.getUniqueProductPath(productPath, null);
|
const safePath = await this.getUniqueProductPath(productPath, null);
|
||||||
|
|
||||||
const idres = await this.knex
|
const idres = await this.knex
|
||||||
|
|||||||
Reference in New Issue
Block a user