915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
19 lines
565 B
Python
19 lines
565 B
Python
# Copyright (c) 2019, Frappe and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
def execute():
|
|
frappe.reload_doc("manufacturing", "doctype", "job_card")
|
|
frappe.reload_doc("manufacturing", "doctype", "job_card_item")
|
|
frappe.reload_doc("manufacturing", "doctype", "work_order_operation")
|
|
|
|
frappe.db.sql(""" update `tabJob Card` jc, `tabWork Order Operation` wo
|
|
SET jc.hour_rate = wo.hour_rate
|
|
WHERE
|
|
jc.operation_id = wo.name and jc.docstatus < 2 and wo.hour_rate > 0
|
|
""")
|