2
0
mirror of https://github.com/frappe/books.git synced 2024-11-09 23:30:56 +00:00

fix: can create purchase receipt and shipment with zero rate

This commit is contained in:
AbleKSaju 2024-08-08 09:21:18 +05:30 committed by akshayitzme
parent 99e6cd5ec0
commit b727cd9ea5

View File

@ -107,7 +107,7 @@ export class StockManager {
throw new ValidationError(t`Rate needs to be set`);
}
if (details.rate.lte(0)) {
if (details.rate.lt(0)) {
throw new ValidationError(
t`Rate (${details.rate.float}) has to be greater than zero`
);