mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-16 08:05:00 +00:00
Merge pull request #49915 from rohitwaghchaure/fixed-patch-update-posting-datetime
fix: patch unknown column posting_date
This commit is contained in:
@@ -432,9 +432,9 @@ erpnext.patches.v15_0.patch_missing_buying_price_list_in_material_request
|
||||
erpnext.patches.v15_0.remove_sales_partner_from_consolidated_sales_invoice
|
||||
erpnext.patches.v15_0.update_uae_zero_rated_fetch
|
||||
erpnext.patches.v15_0.add_company_payment_gateway_account
|
||||
erpnext.patches.v16_0.update_serial_no_reference_name
|
||||
erpnext.patches.v16_0.set_invoice_type_in_pos_settings
|
||||
erpnext.patches.v15_0.update_fieldname_in_accounting_dimension_filter
|
||||
erpnext.patches.v16_0.make_workstation_operating_components #1
|
||||
erpnext.patches.v16_0.set_reporting_currency
|
||||
erpnext.patches.v16_0.set_posting_datetime_for_sabb_and_drop_indexes
|
||||
erpnext.patches.v16_0.update_serial_no_reference_name
|
||||
|
||||
@@ -16,7 +16,7 @@ def execute():
|
||||
.on(sabb.name == sabb_entry.parent)
|
||||
.set(serial_no.reference_name, serial_no.purchase_document_no)
|
||||
.set(serial_no.reference_doctype, sabb.voucher_type)
|
||||
.set(serial_no.posting_date, sabb.posting_date)
|
||||
.set(serial_no.posting_date, sabb.posting_datetime)
|
||||
.where(
|
||||
(sabb.voucher_no == serial_no.purchase_document_no)
|
||||
& (sabb.is_cancelled == 0)
|
||||
|
||||
Reference in New Issue
Block a user