File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -579,14 +579,14 @@ const app = {
579
579
"freebie_coupon" : {
580
580
"type" : "string" ,
581
581
"maxLength" : 255 ,
582
- "title" : "Cupom de brinde" ,
582
+ "title" : "Cupom para brinde" ,
583
583
"description" : "Se preenchido, os brindes serão disponibilizados apenas com a inserção deste cupom"
584
584
} ,
585
585
"freebie_utm" : {
586
586
"type" : "string" ,
587
587
"maxLength" : 255 ,
588
- "title" : "Utm de brinde" ,
589
- "description" : "Se preenchido, os brindes serão disponibilizados apenas com o uso do utm "
588
+ "title" : "UTM para brinde" ,
589
+ "description" : "Se preenchido, os brindes serão disponibilizados apenas com o uso do UTM "
590
590
} ,
591
591
"domain" : {
592
592
"type" : "string" ,
Original file line number Diff line number Diff line change @@ -225,10 +225,13 @@ ${discountedSkus.map((sku) => `\n${sku}: ${discountPerSku[sku].toFixed(2)}`)}
225
225
if ( ! ( rule . min_subtotal > fixedSubtotal ) ) {
226
226
bestRule = rule
227
227
discountValue = value
228
- } else if ( ! discountValue && fixedSubtotal >= rule . min_subtotal ) {
228
+ }
229
+ /*
230
+ else if (!discountValue && fixedSubtotal >= rule.min_subtotal) {
229
231
// discount not applicable yet but additional freebies are available
230
232
bestRule = rule
231
233
}
234
+ */
232
235
}
233
236
}
234
237
You can’t perform that action at this time.
0 commit comments