2
0
mirror of https://github.com/frappe/books.git synced 2024-09-19 19:19:02 +00:00

Merge pull request #921 from AbleKSaju/fix-action-name

fix: action name in Purchase Receipt
This commit is contained in:
Akshay 2024-08-10 15:18:27 +05:30 committed by GitHub
commit e975e29cce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,6 +24,6 @@ export class PurchaseReceipt extends StockTransfer {
}
static getActions(fyo: Fyo): Action[] {
return getStockTransferActions(fyo, ModelNameEnum.Shipment);
return getStockTransferActions(fyo, ModelNameEnum.PurchaseReceipt);
}
}