mirror of
https://github.com/frappe/books.git
synced 2024-12-22 02:49:03 +00:00
fix: order in address quick view
This commit is contained in:
parent
6bbee25dd5
commit
f91e2e89df
@ -170,7 +170,7 @@ export function getMakeReturnDocAction(fyo: Fyo): Action {
|
||||
doc.isSubmitted &&
|
||||
!doc.isReturn,
|
||||
action: async (doc: Doc) => {
|
||||
const returnDoc = await (doc as StockTransfer).getReturnDoc();
|
||||
const returnDoc = await (doc as StockTransfer)?.getReturnDoc();
|
||||
if (!returnDoc || !returnDoc.name) {
|
||||
return;
|
||||
}
|
||||
|
@ -83,8 +83,8 @@
|
||||
"addressLine1",
|
||||
"addressLine2",
|
||||
"city",
|
||||
"state",
|
||||
"country",
|
||||
"state",
|
||||
"postalCode"
|
||||
],
|
||||
"linkDisplayField": "addressDisplay"
|
||||
|
@ -13,8 +13,8 @@
|
||||
"addressLine1",
|
||||
"addressLine2",
|
||||
"city",
|
||||
"state",
|
||||
"country",
|
||||
"state",
|
||||
"postalCode",
|
||||
"pos"
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user