mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-30 02:14:48 +00:00
style: Insert whitespace after ,
This commit is contained in:
@@ -217,7 +217,7 @@ class QuickBooksMigrator(Document):
|
|||||||
|
|
||||||
def _fetch_general_ledger(self):
|
def _fetch_general_ledger(self):
|
||||||
try:
|
try:
|
||||||
query_uri = "{}/company/{}/reports/GeneralLedger".format(self.api_endpoint ,self.quickbooks_company_id)
|
query_uri = "{}/company/{}/reports/GeneralLedger".format(self.api_endpoint, self.quickbooks_company_id)
|
||||||
response = self._get(query_uri,
|
response = self._get(query_uri,
|
||||||
params={
|
params={
|
||||||
"columns": ",".join(["tx_date", "txn_type", "credit_amt", "debt_amt"]),
|
"columns": ",".join(["tx_date", "txn_type", "credit_amt", "debt_amt"]),
|
||||||
@@ -555,7 +555,7 @@ class QuickBooksMigrator(Document):
|
|||||||
if "BillAddr" in vendor:
|
if "BillAddr" in vendor:
|
||||||
self._create_address(erpsupplier, "Supplier", vendor["BillAddr"], "Billing")
|
self._create_address(erpsupplier, "Supplier", vendor["BillAddr"], "Billing")
|
||||||
if "ShipAddr" in vendor:
|
if "ShipAddr" in vendor:
|
||||||
self._create_address(erpsupplier, "Supplier",vendor["ShipAddr"], "Shipping")
|
self._create_address(erpsupplier, "Supplier", vendor["ShipAddr"], "Shipping")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self._log_error(e)
|
self._log_error(e)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user