allow email blank at create customer

This commit is contained in:
NyanLinHtut
2022-03-22 11:06:32 +06:30
parent 5ef2e534c5
commit 070dc47225
2 changed files with 8 additions and 8 deletions

View File

@@ -48,11 +48,11 @@ class Printer::PrinterWorker
copy = self.print_copies
#Print only when printer information is not null
if !self.printer_destination.nil?
(1..copy).each do
page = Cups::PrintJob.new(file_path, printer_destination)
page.print
end
end
# if !self.printer_destination.nil?
# (1..copy).each do
# page = Cups::PrintJob.new(file_path, printer_destination)
# page.print
# end
# end
end
end