Merge branch 'develop' into fix-clear-depr-schedule
This commit is contained in:
commit
43b8936f1c
@ -17,7 +17,7 @@ from erpnext.accounts.general_ledger import (
|
|||||||
from erpnext.accounts.utils import get_fiscal_year
|
from erpnext.accounts.utils import get_fiscal_year
|
||||||
from erpnext.controllers.accounts_controller import AccountsController
|
from erpnext.controllers.accounts_controller import AccountsController
|
||||||
from erpnext.stock import get_warehouse_account_map
|
from erpnext.stock import get_warehouse_account_map
|
||||||
from erpnext.stock.stock_ledger import get_valuation_rate
|
from erpnext.stock.stock_ledger import get_items_to_be_repost, get_valuation_rate
|
||||||
|
|
||||||
|
|
||||||
class QualityInspectionRequiredError(frappe.ValidationError): pass
|
class QualityInspectionRequiredError(frappe.ValidationError): pass
|
||||||
@ -544,8 +544,13 @@ class StockController(AccountsController):
|
|||||||
"company": self.company
|
"company": self.company
|
||||||
})
|
})
|
||||||
if future_sle_exists(args):
|
if future_sle_exists(args):
|
||||||
|
item_based_reposting = cint(frappe.db.get_single_value("Stock Reposting Settings", "item_based_reposting"))
|
||||||
|
if item_based_reposting:
|
||||||
|
create_item_wise_repost_entries(voucher_type=self.doctype, voucher_no=self.name)
|
||||||
|
else:
|
||||||
create_repost_item_valuation_entry(args)
|
create_repost_item_valuation_entry(args)
|
||||||
|
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def make_quality_inspections(doctype, docname, items):
|
def make_quality_inspections(doctype, docname, items):
|
||||||
if isinstance(items, str):
|
if isinstance(items, str):
|
||||||
@ -679,3 +684,35 @@ def create_repost_item_valuation_entry(args):
|
|||||||
repost_entry.flags.ignore_permissions = True
|
repost_entry.flags.ignore_permissions = True
|
||||||
repost_entry.save()
|
repost_entry.save()
|
||||||
repost_entry.submit()
|
repost_entry.submit()
|
||||||
|
|
||||||
|
|
||||||
|
def create_item_wise_repost_entries(voucher_type, voucher_no, allow_zero_rate=False):
|
||||||
|
"""Using a voucher create repost item valuation records for all item-warehouse pairs."""
|
||||||
|
|
||||||
|
stock_ledger_entries = get_items_to_be_repost(voucher_type, voucher_no)
|
||||||
|
|
||||||
|
distinct_item_warehouses = set()
|
||||||
|
repost_entries = []
|
||||||
|
|
||||||
|
for sle in stock_ledger_entries:
|
||||||
|
item_wh = (sle.item_code, sle.warehouse)
|
||||||
|
if item_wh in distinct_item_warehouses:
|
||||||
|
continue
|
||||||
|
distinct_item_warehouses.add(item_wh)
|
||||||
|
|
||||||
|
repost_entry = frappe.new_doc("Repost Item Valuation")
|
||||||
|
repost_entry.based_on = "Item and Warehouse"
|
||||||
|
repost_entry.voucher_type = voucher_type
|
||||||
|
repost_entry.voucher_no = voucher_no
|
||||||
|
|
||||||
|
repost_entry.item_code = sle.item_code
|
||||||
|
repost_entry.warehouse = sle.warehouse
|
||||||
|
repost_entry.posting_date = sle.posting_date
|
||||||
|
repost_entry.posting_time = sle.posting_time
|
||||||
|
repost_entry.allow_zero_rate = allow_zero_rate
|
||||||
|
repost_entry.flags.ignore_links = True
|
||||||
|
repost_entry.flags.ignore_permissions = True
|
||||||
|
repost_entry.submit()
|
||||||
|
repost_entries.append(repost_entry)
|
||||||
|
|
||||||
|
return repost_entries
|
||||||
|
@ -442,7 +442,7 @@ frappe.ui.form.on("Work Order", {
|
|||||||
additional_operating_cost: function(frm) {
|
additional_operating_cost: function(frm) {
|
||||||
erpnext.work_order.calculate_cost(frm.doc);
|
erpnext.work_order.calculate_cost(frm.doc);
|
||||||
erpnext.work_order.calculate_total_cost(frm);
|
erpnext.work_order.calculate_total_cost(frm);
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
frappe.ui.form.on("Work Order Item", {
|
frappe.ui.form.on("Work Order Item", {
|
||||||
|
@ -326,6 +326,7 @@
|
|||||||
"label": "Expected Delivery Date"
|
"label": "Expected Delivery Date"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"collapsible": 1,
|
||||||
"fieldname": "operations_section",
|
"fieldname": "operations_section",
|
||||||
"fieldtype": "Section Break",
|
"fieldtype": "Section Break",
|
||||||
"label": "Operations",
|
"label": "Operations",
|
||||||
@ -337,7 +338,7 @@
|
|||||||
"fieldname": "transfer_material_against",
|
"fieldname": "transfer_material_against",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
"label": "Transfer Material Against",
|
"label": "Transfer Material Against",
|
||||||
"options": "\nWork Order\nJob Card"
|
"options": "Work Order\nJob Card"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "operations",
|
"fieldname": "operations",
|
||||||
@ -573,8 +574,7 @@
|
|||||||
"image_field": "image",
|
"image_field": "image",
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"migration_hash": "a18118963f4fcdb7f9d326de5f4063ba",
|
"modified": "2021-11-08 17:36:07.016300",
|
||||||
"modified": "2021-10-29 15:12:32.203605",
|
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Manufacturing",
|
"module": "Manufacturing",
|
||||||
"name": "Work Order",
|
"name": "Work Order",
|
||||||
|
@ -6,27 +6,27 @@
|
|||||||
"field_order": [
|
"field_order": [
|
||||||
"details",
|
"details",
|
||||||
"operation",
|
"operation",
|
||||||
"bom",
|
|
||||||
"column_break_4",
|
|
||||||
"description",
|
|
||||||
"sequence_id",
|
|
||||||
"col_break1",
|
|
||||||
"completed_qty",
|
|
||||||
"status",
|
"status",
|
||||||
|
"completed_qty",
|
||||||
|
"column_break_4",
|
||||||
|
"bom",
|
||||||
"workstation",
|
"workstation",
|
||||||
|
"sequence_id",
|
||||||
|
"section_break_10",
|
||||||
|
"description",
|
||||||
"estimated_time_and_cost",
|
"estimated_time_and_cost",
|
||||||
"planned_start_time",
|
"planned_start_time",
|
||||||
"planned_end_time",
|
|
||||||
"column_break_10",
|
|
||||||
"time_in_mins",
|
|
||||||
"hour_rate",
|
"hour_rate",
|
||||||
|
"time_in_mins",
|
||||||
|
"column_break_10",
|
||||||
|
"planned_end_time",
|
||||||
"batch_size",
|
"batch_size",
|
||||||
"planned_operating_cost",
|
"planned_operating_cost",
|
||||||
"section_break_9",
|
"section_break_9",
|
||||||
"actual_start_time",
|
"actual_start_time",
|
||||||
"actual_end_time",
|
|
||||||
"column_break_11",
|
|
||||||
"actual_operation_time",
|
"actual_operation_time",
|
||||||
|
"column_break_11",
|
||||||
|
"actual_end_time",
|
||||||
"actual_operating_cost"
|
"actual_operating_cost"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
@ -42,7 +42,6 @@
|
|||||||
"oldfieldname": "operation_no",
|
"oldfieldname": "operation_no",
|
||||||
"oldfieldtype": "Data",
|
"oldfieldtype": "Data",
|
||||||
"options": "Operation",
|
"options": "Operation",
|
||||||
"read_only": 1,
|
|
||||||
"reqd": 1
|
"reqd": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -52,20 +51,14 @@
|
|||||||
"label": "BOM",
|
"label": "BOM",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "BOM",
|
"options": "BOM",
|
||||||
"print_hide": 1,
|
"print_hide": 1
|
||||||
"read_only": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "description",
|
"fieldname": "description",
|
||||||
"fieldtype": "Text Editor",
|
"fieldtype": "Text Editor",
|
||||||
"label": "Operation Description",
|
"label": "Operation Description",
|
||||||
"oldfieldname": "opn_description",
|
"oldfieldname": "opn_description",
|
||||||
"oldfieldtype": "Text",
|
"oldfieldtype": "Text"
|
||||||
"read_only": 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fieldname": "col_break1",
|
|
||||||
"fieldtype": "Column Break"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"columns": 1,
|
"columns": 1,
|
||||||
@ -74,19 +67,16 @@
|
|||||||
"fieldtype": "Float",
|
"fieldtype": "Float",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
"label": "Completed Qty",
|
"label": "Completed Qty",
|
||||||
"no_copy": 1,
|
"no_copy": 1
|
||||||
"read_only": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"columns": 1,
|
"columns": 1,
|
||||||
"default": "Pending",
|
"default": "Pending",
|
||||||
"fieldname": "status",
|
"fieldname": "status",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
"in_list_view": 1,
|
|
||||||
"label": "Status",
|
"label": "Status",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "Pending\nWork in Progress\nCompleted",
|
"options": "Pending\nWork in Progress\nCompleted"
|
||||||
"read_only": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "workstation",
|
"fieldname": "workstation",
|
||||||
@ -106,15 +96,13 @@
|
|||||||
"fieldname": "planned_start_time",
|
"fieldname": "planned_start_time",
|
||||||
"fieldtype": "Datetime",
|
"fieldtype": "Datetime",
|
||||||
"label": "Planned Start Time",
|
"label": "Planned Start Time",
|
||||||
"no_copy": 1,
|
"no_copy": 1
|
||||||
"read_only": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "planned_end_time",
|
"fieldname": "planned_end_time",
|
||||||
"fieldtype": "Datetime",
|
"fieldtype": "Datetime",
|
||||||
"label": "Planned End Time",
|
"label": "Planned End Time",
|
||||||
"no_copy": 1,
|
"no_copy": 1
|
||||||
"read_only": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_10",
|
"fieldname": "column_break_10",
|
||||||
@ -122,7 +110,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"columns": 1,
|
"columns": 1,
|
||||||
"description": "in Minutes",
|
"description": "In Minutes",
|
||||||
"fieldname": "time_in_mins",
|
"fieldname": "time_in_mins",
|
||||||
"fieldtype": "Float",
|
"fieldtype": "Float",
|
||||||
"in_list_view": 1,
|
"in_list_view": 1,
|
||||||
@ -152,6 +140,7 @@
|
|||||||
"label": "Actual Time and Cost"
|
"label": "Actual Time and Cost"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"description": "Updated via 'Time Log' (In Minutes)",
|
||||||
"fieldname": "actual_start_time",
|
"fieldname": "actual_start_time",
|
||||||
"fieldtype": "Datetime",
|
"fieldtype": "Datetime",
|
||||||
"label": "Actual Start Time",
|
"label": "Actual Start Time",
|
||||||
@ -159,7 +148,7 @@
|
|||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Updated via 'Time Log'",
|
"description": "Updated via 'Time Log' (In Minutes)",
|
||||||
"fieldname": "actual_end_time",
|
"fieldname": "actual_end_time",
|
||||||
"fieldtype": "Datetime",
|
"fieldtype": "Datetime",
|
||||||
"label": "Actual End Time",
|
"label": "Actual End Time",
|
||||||
@ -171,7 +160,7 @@
|
|||||||
"fieldtype": "Column Break"
|
"fieldtype": "Column Break"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "in Minutes\nUpdated via 'Time Log'",
|
"description": "Updated via 'Time Log' (In Minutes)",
|
||||||
"fieldname": "actual_operation_time",
|
"fieldname": "actual_operation_time",
|
||||||
"fieldtype": "Float",
|
"fieldtype": "Float",
|
||||||
"label": "Actual Operation Time",
|
"label": "Actual Operation Time",
|
||||||
@ -190,25 +179,28 @@
|
|||||||
{
|
{
|
||||||
"fieldname": "batch_size",
|
"fieldname": "batch_size",
|
||||||
"fieldtype": "Int",
|
"fieldtype": "Int",
|
||||||
"label": "Batch Size",
|
"label": "Batch Size"
|
||||||
"read_only": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "sequence_id",
|
"fieldname": "sequence_id",
|
||||||
"fieldtype": "Int",
|
"fieldtype": "Int",
|
||||||
|
"hidden": 1,
|
||||||
"label": "Sequence ID",
|
"label": "Sequence ID",
|
||||||
"print_hide": 1,
|
"print_hide": 1
|
||||||
"read_only": 1
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "column_break_4",
|
"fieldname": "column_break_4",
|
||||||
"fieldtype": "Column Break"
|
"fieldtype": "Column Break"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fieldname": "section_break_10",
|
||||||
|
"fieldtype": "Section Break"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"istable": 1,
|
"istable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2021-06-24 14:36:12.835543",
|
"modified": "2021-11-24 04:52:54.295168",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Manufacturing",
|
"module": "Manufacturing",
|
||||||
"name": "Work Order Operation",
|
"name": "Work Order Operation",
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors
|
# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and contributors
|
||||||
# For license information, please see license.txt
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
|
||||||
import frappe
|
import frappe
|
||||||
from frappe import _
|
from frappe import _
|
||||||
from frappe.utils import flt
|
from frappe.utils import flt
|
||||||
@ -30,7 +29,6 @@ def get_data(report_filters):
|
|||||||
|
|
||||||
for row in job_cards:
|
for row in job_cards:
|
||||||
row.operating_cost = flt(row.hour_rate) * (flt(row.total_time_in_mins) / 60.0)
|
row.operating_cost = flt(row.hour_rate) * (flt(row.total_time_in_mins) / 60.0)
|
||||||
update_raw_material_cost(row, report_filters)
|
|
||||||
data.append(row)
|
data.append(row)
|
||||||
|
|
||||||
return data
|
return data
|
||||||
@ -46,12 +44,6 @@ def get_filters(report_filters, operations):
|
|||||||
|
|
||||||
return filters
|
return filters
|
||||||
|
|
||||||
def update_raw_material_cost(row, filters):
|
|
||||||
row.rm_cost = 0.0
|
|
||||||
for data in frappe.get_all("Job Card Item", fields = ["amount"],
|
|
||||||
filters={"parent": row.name, "docstatus": 1}):
|
|
||||||
row.rm_cost += data.amount
|
|
||||||
|
|
||||||
def get_columns(filters):
|
def get_columns(filters):
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
@ -59,7 +51,7 @@ def get_columns(filters):
|
|||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"fieldname": "name",
|
"fieldname": "name",
|
||||||
"options": "Job Card",
|
"options": "Job Card",
|
||||||
"width": "100"
|
"width": "120"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": _("Work Order"),
|
"label": _("Work Order"),
|
||||||
@ -111,18 +103,12 @@ def get_columns(filters):
|
|||||||
"label": _("Operating Cost"),
|
"label": _("Operating Cost"),
|
||||||
"fieldtype": "Currency",
|
"fieldtype": "Currency",
|
||||||
"fieldname": "operating_cost",
|
"fieldname": "operating_cost",
|
||||||
"width": "100"
|
"width": "150"
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": _("Raw Material Cost"),
|
|
||||||
"fieldtype": "Currency",
|
|
||||||
"fieldname": "rm_cost",
|
|
||||||
"width": "100"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": _("Total Time (in Mins)"),
|
"label": _("Total Time (in Mins)"),
|
||||||
"fieldtype": "Float",
|
"fieldtype": "Float",
|
||||||
"fieldname": "total_time_in_mins",
|
"fieldname": "total_time_in_mins",
|
||||||
"width": "100"
|
"width": "150"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -7,6 +7,7 @@ import frappe
|
|||||||
|
|
||||||
def execute():
|
def execute():
|
||||||
frappe.reload_doc("setup", "doctype", "target_detail")
|
frappe.reload_doc("setup", "doctype", "target_detail")
|
||||||
|
frappe.reload_doc("core", "doctype", "prepared_report")
|
||||||
|
|
||||||
for d in ['Sales Person', 'Sales Partner', 'Territory']:
|
for d in ['Sales Person', 'Sales Partner', 'Territory']:
|
||||||
frappe.db.sql("""
|
frappe.db.sql("""
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
"in_standard_filter": 1,
|
"in_standard_filter": 1,
|
||||||
"label": "Status",
|
"label": "Status",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"options": "Queued\nIn Progress\nCompleted\nFailed",
|
"options": "Queued\nIn Progress\nCompleted\nSkipped\nFailed",
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -177,7 +177,7 @@
|
|||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"is_submittable": 1,
|
"is_submittable": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2021-11-18 02:18:10.524560",
|
"modified": "2021-11-24 02:18:10.524560",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Stock",
|
"module": "Stock",
|
||||||
"name": "Repost Item Valuation",
|
"name": "Repost Item Valuation",
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors
|
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and contributors
|
||||||
# For license information, please see license.txt
|
# For license information, please see license.txt
|
||||||
|
|
||||||
|
|
||||||
import frappe
|
import frappe
|
||||||
from frappe import _
|
from frappe import _
|
||||||
from frappe.model.document import Document
|
from frappe.model.document import Document
|
||||||
@ -19,7 +18,7 @@ from erpnext.stock.stock_ledger import repost_future_sle
|
|||||||
|
|
||||||
class RepostItemValuation(Document):
|
class RepostItemValuation(Document):
|
||||||
def validate(self):
|
def validate(self):
|
||||||
self.set_status()
|
self.set_status(write=False)
|
||||||
self.reset_field_values()
|
self.reset_field_values()
|
||||||
self.set_company()
|
self.set_company()
|
||||||
|
|
||||||
@ -27,26 +26,27 @@ class RepostItemValuation(Document):
|
|||||||
if self.based_on == 'Transaction':
|
if self.based_on == 'Transaction':
|
||||||
self.item_code = None
|
self.item_code = None
|
||||||
self.warehouse = None
|
self.warehouse = None
|
||||||
else:
|
|
||||||
self.voucher_type = None
|
|
||||||
self.voucher_no = None
|
|
||||||
|
|
||||||
self.allow_negative_stock = self.allow_negative_stock or \
|
self.allow_negative_stock = self.allow_negative_stock or \
|
||||||
cint(frappe.db.get_single_value("Stock Settings", "allow_negative_stock"))
|
cint(frappe.db.get_single_value("Stock Settings", "allow_negative_stock"))
|
||||||
|
|
||||||
def set_company(self):
|
def set_company(self):
|
||||||
if self.voucher_type and self.voucher_no:
|
if self.based_on == "Transaction":
|
||||||
self.company = frappe.get_cached_value(self.voucher_type, self.voucher_no, "company")
|
self.company = frappe.get_cached_value(self.voucher_type, self.voucher_no, "company")
|
||||||
elif self.warehouse:
|
elif self.warehouse:
|
||||||
self.company = frappe.get_cached_value("Warehouse", self.warehouse, "company")
|
self.company = frappe.get_cached_value("Warehouse", self.warehouse, "company")
|
||||||
|
|
||||||
def set_status(self, status=None):
|
def set_status(self, status=None, write=True):
|
||||||
|
status = status or self.status
|
||||||
if not status:
|
if not status:
|
||||||
status = 'Queued'
|
self.status = 'Queued'
|
||||||
self.db_set('status', status)
|
else:
|
||||||
|
self.status = status
|
||||||
|
if write:
|
||||||
|
self.db_set('status', self.status)
|
||||||
|
|
||||||
def on_submit(self):
|
def on_submit(self):
|
||||||
if not frappe.flags.in_test:
|
if not frappe.flags.in_test or self.flags.dont_run_in_test:
|
||||||
return
|
return
|
||||||
|
|
||||||
frappe.enqueue(repost, timeout=1800, queue='long',
|
frappe.enqueue(repost, timeout=1800, queue='long',
|
||||||
@ -58,6 +58,37 @@ class RepostItemValuation(Document):
|
|||||||
frappe.enqueue(repost, timeout=1800, queue='long',
|
frappe.enqueue(repost, timeout=1800, queue='long',
|
||||||
job_name='repost_sle', now=True, doc=self)
|
job_name='repost_sle', now=True, doc=self)
|
||||||
|
|
||||||
|
def deduplicate_similar_repost(self):
|
||||||
|
""" Deduplicate similar reposts based on item-warehouse-posting combination."""
|
||||||
|
if self.based_on != "Item and Warehouse":
|
||||||
|
return
|
||||||
|
|
||||||
|
filters = {
|
||||||
|
"item_code": self.item_code,
|
||||||
|
"warehouse": self.warehouse,
|
||||||
|
"name": self.name,
|
||||||
|
"posting_date": self.posting_date,
|
||||||
|
"posting_time": self.posting_time,
|
||||||
|
}
|
||||||
|
|
||||||
|
frappe.db.sql("""
|
||||||
|
update `tabRepost Item Valuation`
|
||||||
|
set status = 'Skipped'
|
||||||
|
WHERE item_code = %(item_code)s
|
||||||
|
and warehouse = %(warehouse)s
|
||||||
|
and name != %(name)s
|
||||||
|
and TIMESTAMP(posting_date, posting_time) > TIMESTAMP(%(posting_date)s, %(posting_time)s)
|
||||||
|
and docstatus = 1
|
||||||
|
and status = 'Queued'
|
||||||
|
and based_on = 'Item and Warehouse'
|
||||||
|
""",
|
||||||
|
filters
|
||||||
|
)
|
||||||
|
|
||||||
|
def on_doctype_update():
|
||||||
|
frappe.db.add_index("Repost Item Valuation", ["warehouse", "item_code"], "item_warehouse")
|
||||||
|
|
||||||
|
|
||||||
def repost(doc):
|
def repost(doc):
|
||||||
try:
|
try:
|
||||||
if not frappe.db.exists("Repost Item Valuation", doc.name):
|
if not frappe.db.exists("Repost Item Valuation", doc.name):
|
||||||
@ -134,6 +165,8 @@ def repost_entries():
|
|||||||
|
|
||||||
for row in riv_entries:
|
for row in riv_entries:
|
||||||
doc = frappe.get_doc('Repost Item Valuation', row.name)
|
doc = frappe.get_doc('Repost Item Valuation', row.name)
|
||||||
|
if doc.status in ('Queued', 'In Progress'):
|
||||||
|
doc.deduplicate_similar_repost()
|
||||||
repost(doc)
|
repost(doc)
|
||||||
|
|
||||||
riv_entries = get_repost_item_valuation_entries()
|
riv_entries = get_repost_item_valuation_entries()
|
||||||
|
@ -5,6 +5,8 @@ import unittest
|
|||||||
|
|
||||||
import frappe
|
import frappe
|
||||||
|
|
||||||
|
from erpnext.controllers.stock_controller import create_item_wise_repost_entries
|
||||||
|
from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt
|
||||||
from erpnext.stock.doctype.repost_item_valuation.repost_item_valuation import (
|
from erpnext.stock.doctype.repost_item_valuation.repost_item_valuation import (
|
||||||
in_configured_timeslot,
|
in_configured_timeslot,
|
||||||
)
|
)
|
||||||
@ -70,3 +72,69 @@ class TestRepostItemValuation(unittest.TestCase):
|
|||||||
in_configured_timeslot(repost_settings, case.get("current_time")),
|
in_configured_timeslot(repost_settings, case.get("current_time")),
|
||||||
msg=f"Exepcted false from : {case}",
|
msg=f"Exepcted false from : {case}",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_create_item_wise_repost_item_valuation_entries(self):
|
||||||
|
pr = make_purchase_receipt(
|
||||||
|
company="_Test Company with perpetual inventory",
|
||||||
|
warehouse="Stores - TCP1",
|
||||||
|
get_multiple_items=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
rivs = create_item_wise_repost_entries(pr.doctype, pr.name)
|
||||||
|
self.assertGreaterEqual(len(rivs), 2)
|
||||||
|
self.assertIn("_Test Item", [d.item_code for d in rivs])
|
||||||
|
|
||||||
|
for riv in rivs:
|
||||||
|
self.assertEqual(riv.company, "_Test Company with perpetual inventory")
|
||||||
|
self.assertEqual(riv.warehouse, "Stores - TCP1")
|
||||||
|
|
||||||
|
def test_deduplication(self):
|
||||||
|
def _assert_status(doc, status):
|
||||||
|
doc.load_from_db()
|
||||||
|
self.assertEqual(doc.status, status)
|
||||||
|
|
||||||
|
riv_args = frappe._dict(
|
||||||
|
doctype="Repost Item Valuation",
|
||||||
|
item_code="_Test Item",
|
||||||
|
warehouse="_Test Warehouse - _TC",
|
||||||
|
based_on="Item and Warehouse",
|
||||||
|
voucher_type="Sales Invoice",
|
||||||
|
voucher_no="SI-1",
|
||||||
|
posting_date="2021-01-02",
|
||||||
|
posting_time="00:01:00",
|
||||||
|
)
|
||||||
|
|
||||||
|
# new repost without any duplicates
|
||||||
|
riv1 = frappe.get_doc(riv_args)
|
||||||
|
riv1.flags.dont_run_in_test = True
|
||||||
|
riv1.submit()
|
||||||
|
_assert_status(riv1, "Queued")
|
||||||
|
self.assertEqual(riv1.voucher_type, "Sales Invoice") # traceability
|
||||||
|
self.assertEqual(riv1.voucher_no, "SI-1")
|
||||||
|
|
||||||
|
# newer than existing duplicate - riv1
|
||||||
|
riv2 = frappe.get_doc(riv_args.update({"posting_date": "2021-01-03"}))
|
||||||
|
riv2.flags.dont_run_in_test = True
|
||||||
|
riv2.submit()
|
||||||
|
riv1.deduplicate_similar_repost()
|
||||||
|
_assert_status(riv2, "Skipped")
|
||||||
|
|
||||||
|
# older than exisitng duplicate - riv1
|
||||||
|
riv3 = frappe.get_doc(riv_args.update({"posting_date": "2021-01-01"}))
|
||||||
|
riv3.flags.dont_run_in_test = True
|
||||||
|
riv3.submit()
|
||||||
|
riv3.deduplicate_similar_repost()
|
||||||
|
_assert_status(riv3, "Queued")
|
||||||
|
_assert_status(riv1, "Skipped")
|
||||||
|
|
||||||
|
# unrelated reposts, shouldn't do anything to others.
|
||||||
|
riv4 = frappe.get_doc(riv_args.update({"warehouse": "Stores - _TC"}))
|
||||||
|
riv4.flags.dont_run_in_test = True
|
||||||
|
riv4.submit()
|
||||||
|
riv4.deduplicate_similar_repost()
|
||||||
|
_assert_status(riv4, "Queued")
|
||||||
|
_assert_status(riv3, "Queued")
|
||||||
|
|
||||||
|
# to avoid breaking other tests accidentaly
|
||||||
|
riv4.set_status("Skipped")
|
||||||
|
riv3.set_status("Skipped")
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"actions": [],
|
"actions": [],
|
||||||
"allow_rename": 1,
|
"allow_rename": 1,
|
||||||
|
"beta": 1,
|
||||||
"creation": "2021-10-01 10:56:30.814787",
|
"creation": "2021-10-01 10:56:30.814787",
|
||||||
"doctype": "DocType",
|
"doctype": "DocType",
|
||||||
"editable_grid": 1,
|
"editable_grid": 1,
|
||||||
@ -10,7 +11,8 @@
|
|||||||
"limit_reposting_timeslot",
|
"limit_reposting_timeslot",
|
||||||
"start_time",
|
"start_time",
|
||||||
"end_time",
|
"end_time",
|
||||||
"limits_dont_apply_on"
|
"limits_dont_apply_on",
|
||||||
|
"item_based_reposting"
|
||||||
],
|
],
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@ -44,12 +46,18 @@
|
|||||||
"fieldname": "limit_reposting_timeslot",
|
"fieldname": "limit_reposting_timeslot",
|
||||||
"fieldtype": "Check",
|
"fieldtype": "Check",
|
||||||
"label": "Limit timeslot for Stock Reposting"
|
"label": "Limit timeslot for Stock Reposting"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"default": "0",
|
||||||
|
"fieldname": "item_based_reposting",
|
||||||
|
"fieldtype": "Check",
|
||||||
|
"label": "Use Item based reposting"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"index_web_pages_for_search": 1,
|
"index_web_pages_for_search": 1,
|
||||||
"issingle": 1,
|
"issingle": 1,
|
||||||
"links": [],
|
"links": [],
|
||||||
"modified": "2021-10-01 11:27:28.981594",
|
"modified": "2021-11-02 01:22:45.155841",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "Stock",
|
"module": "Stock",
|
||||||
"name": "Stock Reposting Settings",
|
"name": "Stock Reposting Settings",
|
||||||
|
@ -10,23 +10,8 @@ frappe.query_reports["Total Stock Summary"] = {
|
|||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
"width": "80",
|
"width": "80",
|
||||||
"reqd": 1,
|
"reqd": 1,
|
||||||
"options": ["", "Warehouse", "Company"],
|
"options": ["Warehouse", "Company"],
|
||||||
"change": function() {
|
"default": "Warehouse",
|
||||||
let group_by = frappe.query_report.get_filter_value("group_by")
|
|
||||||
let company_filter = frappe.query_report.get_filter("company")
|
|
||||||
if (group_by == "Company") {
|
|
||||||
company_filter.df.reqd = 0;
|
|
||||||
company_filter.df.hidden = 1;
|
|
||||||
frappe.query_report.set_filter_value("company", "");
|
|
||||||
company_filter.refresh();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
company_filter.df.reqd = 1;
|
|
||||||
company_filter.df.hidden = 0;
|
|
||||||
company_filter.refresh();
|
|
||||||
frappe.query_report.refresh();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fieldname": "company",
|
"fieldname": "company",
|
||||||
@ -34,8 +19,9 @@ frappe.query_reports["Total Stock Summary"] = {
|
|||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"width": "80",
|
"width": "80",
|
||||||
"options": "Company",
|
"options": "Company",
|
||||||
|
"reqd": 1,
|
||||||
"default": frappe.defaults.get_user_default("Company"),
|
"default": frappe.defaults.get_user_default("Company"),
|
||||||
"reqd": 1
|
"depends_on": "eval: doc.group_by != 'Company'",
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -7,8 +7,9 @@ from frappe import _
|
|||||||
|
|
||||||
|
|
||||||
def execute(filters=None):
|
def execute(filters=None):
|
||||||
if not filters: filters = {}
|
|
||||||
validate_filters(filters)
|
if not filters:
|
||||||
|
filters = {}
|
||||||
columns = get_columns()
|
columns = get_columns()
|
||||||
stock = get_total_stock(filters)
|
stock = get_total_stock(filters)
|
||||||
|
|
||||||
@ -53,9 +54,3 @@ def get_total_stock(filters):
|
|||||||
ON warehouse.name = ledger.warehouse
|
ON warehouse.name = ledger.warehouse
|
||||||
WHERE
|
WHERE
|
||||||
ledger.actual_qty != 0 %s""" % (columns, conditions))
|
ledger.actual_qty != 0 %s""" % (columns, conditions))
|
||||||
|
|
||||||
def validate_filters(filters):
|
|
||||||
if filters.get("group_by") == 'Company' and \
|
|
||||||
filters.get("company"):
|
|
||||||
|
|
||||||
frappe.throw(_("Please set Company filter blank if Group By is 'Company'"))
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user