Fixed bot mechanism

featureBotClasifcacion
alfonso 1 year ago
parent dfe741a194
commit d4a7d92473
  1. 6
      src/Components/Clientes/Amazon/Reportes/Clasification/Pending/RptAmazonPendingClasificationInvoices.tsx

@ -312,7 +312,8 @@ export default function RtpAmazonPendingInvoices(
toggleExpandRow(row)
return false
}
if (BOTEnabled && !row.max) {
if (BOTEnabled) {
// if (!row.max) {
setWaitingMessage('BOT trabajando...')
setWaitingDialog(true)
DSAmazon.ClasificacionBOT(row.id)
@ -334,6 +335,9 @@ export default function RtpAmazonPendingInvoices(
setWaitingDialog(false)
return
})
/* } else {
toggleExpandRow(row)
} */
}
}

Loading…
Cancel
Save