Commit b3868ecb by Solo Group

penambahan cek sukses dan Noref+1

1 parent de044f5a
......@@ -114,12 +114,15 @@ class Vendor(VendorClass):
verify=False,
headers=self.get_headers(),
timeout=20)
except:
log.info("Biller Error")
except Exception as e:
log.info("Error: {}".format(e))
self.response = e
return
if not resp:
log.info("No Response From Biller")
msg = "No Response From Biller"
log.info(msg)
self.response = msg
return
try:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!