feat: refs#7823 selectPrinterFreely

This commit is contained in:
Sergio De la torre 2025-03-24 12:18:06 +01:00
parent 983043382d
commit 2f639cc1c0
1 changed files with 3 additions and 2 deletions

View File

@ -29,8 +29,8 @@ class PrinterDialogManager(private val context: Context) {
handlePrintClick(item, customDialogList, onPrintClick, "barcode")
customDialogList.dismiss()
//Tarea 7823
/*}.setOkThreeButton(context.getString(R.string.changePrinter)) {
readQrPrinter(onPrintChange)*/
}.setOkThreeButton(context.getString(R.string.changePrinter)) {
readQrPrinter(onPrintChange)
}.setKoButton(context.getString(R.string.cancel)) {
customDialogList.dismiss()
}.setHintValueThree(context.getString(R.string.labelNumber))
@ -55,6 +55,7 @@ class PrinterDialogManager(private val context: Context) {
customDialogInput.getEditText().setOnEditorActionListener { _, actionId, _ ->
if (actionId == EditorInfo.IME_ACTION_SEARCH || actionId == EditorInfo.IME_ACTION_DONE || actionId == 0) {
onPrintChange(customDialogInput.getValue())
println("printerrr ${customDialogInput.getValue()}")
customDialogInput.dismiss()
return@setOnEditorActionListener true
}