Fix draft order line items (#873)
This commit is contained in:
@@ -3,5 +3,6 @@
|
||||
"semi": false,
|
||||
"singleQuote": false,
|
||||
"tabWidth": 2,
|
||||
"trailingComma": "es5"
|
||||
}
|
||||
"trailingComma": "es5",
|
||||
"arrowParens": "always"
|
||||
}
|
||||
|
||||
@@ -104,7 +104,7 @@ class LineItemService extends BaseService {
|
||||
let price
|
||||
let shouldMerge = true
|
||||
|
||||
if (config.unit_price && typeof config.unit_price !== `undefined`) {
|
||||
if (config.unit_price !== undefined && config.unit_price !== null) {
|
||||
// if custom unit_price, we ensure positive values
|
||||
// and we choose to not merge the items
|
||||
shouldMerge = false
|
||||
|
||||
Reference in New Issue
Block a user