Merge pull request #30746 from frappe/mergify/bp/develop/pr-30736

fix(india): transporter name is null while generating e-way bill (backport #30736)
This commit is contained in:
Deepesh Garg 2022-04-20 11:25:27 +05:30 committed by GitHub
commit 5c45093d2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1074,7 +1074,7 @@ class GSPConnector:
"Distance": cint(eway_bill_details.distance),
"TransMode": eway_bill_details.mode_of_transport,
"TransId": eway_bill_details.gstin,
"TransName": eway_bill_details.transporter,
"TransName": eway_bill_details.name,
"TrnDocDt": eway_bill_details.document_date,
"TrnDocNo": eway_bill_details.document_name,
"VehNo": eway_bill_details.vehicle_no,