diff --git a/erpnext/locale/fr.po b/erpnext/locale/fr.po index eba23b5c0f5b26c3560f092dcae62feff0eb2582..dddd12f40298c9e921aeb5d9f2f082d2ac45dc4b 100644 --- a/erpnext/locale/fr.po +++ b/erpnext/locale/fr.po @@ -54678,13 +54678,7 @@ msgstr "Les jours perdus doivent commencer à partir de 1." #: erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py:159 msgid "Standard" -msgstr "" -" Standard : Standard\n" -" Achat : Achat\n" -" Vente : Vente\n" -" Description : Description\n" -" Modèle : Modèle\n" -" Prix de vente : Prix de vente" +msgstr "Standard" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:71 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:502 diff --git a/erpnext/selling/doctype/sales_order/sales_order.py b/erpnext/selling/doctype/sales_order/sales_order.py index 7f93dcf9aa3e67554ef3cbfc286f9b4e84f723a8..055f389e859d512eca39e320b06d1a82491c628a 100755 --- a/erpnext/selling/doctype/sales_order/sales_order.py +++ b/erpnext/selling/doctype/sales_order/sales_order.py @@ -965,9 +965,8 @@ def make_material_request(source_name, target_doc=None): "delivery_date": "schedule_date", "bom_no": "bom_no", }, - "condition": lambda item: not is_product_bundle( - item.item_code, product_bundle_name=item.get("product_bundle_name") - ) + "condition": lambda item: item.item_code + and not is_product_bundle(item.item_code, product_bundle_name=item.get("product_bundle_name")) and get_remaining_qty(item) > 0, "postprocess": update_item, },