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

fix: removed extra condition that checks isReturn

This commit is contained in:
akshayitzme 2023-08-19 10:15:58 +05:30
parent 861493ed90
commit d41530b654

View File

@ -45,7 +45,7 @@ export abstract class StockTransfer extends Transfer {
}
get isReturn(): boolean {
return !!this.returnAgainst && this.returnAgainst.length > 1;
return !!this.returnAgainst;
}
get invoiceSchemaName() {