mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 06:29:20 +00:00
Merge pull request #49165 from karm1000/remove-last-scanned-warehouse-from-python
This commit is contained in:
@@ -139,7 +139,6 @@ class PurchaseInvoice(BuyingController):
|
|||||||
is_subcontracted: DF.Check
|
is_subcontracted: DF.Check
|
||||||
items: DF.Table[PurchaseInvoiceItem]
|
items: DF.Table[PurchaseInvoiceItem]
|
||||||
language: DF.Data | None
|
language: DF.Data | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
mode_of_payment: DF.Link | None
|
mode_of_payment: DF.Link | None
|
||||||
named_place: DF.Data | None
|
named_place: DF.Data | None
|
||||||
|
|||||||
@@ -147,7 +147,6 @@ class SalesInvoice(SellingController):
|
|||||||
is_return: DF.Check
|
is_return: DF.Check
|
||||||
items: DF.Table[SalesInvoiceItem]
|
items: DF.Table[SalesInvoiceItem]
|
||||||
language: DF.Link | None
|
language: DF.Link | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
loyalty_amount: DF.Currency
|
loyalty_amount: DF.Currency
|
||||||
loyalty_points: DF.Int
|
loyalty_points: DF.Int
|
||||||
|
|||||||
@@ -107,7 +107,6 @@ class PurchaseOrder(BuyingController):
|
|||||||
is_subcontracted: DF.Check
|
is_subcontracted: DF.Check
|
||||||
items: DF.Table[PurchaseOrderItem]
|
items: DF.Table[PurchaseOrderItem]
|
||||||
language: DF.Data | None
|
language: DF.Data | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
named_place: DF.Data | None
|
named_place: DF.Data | None
|
||||||
naming_series: DF.Literal["PUR-ORD-.YYYY.-"]
|
naming_series: DF.Literal["PUR-ORD-.YYYY.-"]
|
||||||
|
|||||||
@@ -74,7 +74,6 @@ class Quotation(SellingController):
|
|||||||
incoterm: DF.Link | None
|
incoterm: DF.Link | None
|
||||||
items: DF.Table[QuotationItem]
|
items: DF.Table[QuotationItem]
|
||||||
language: DF.Link | None
|
language: DF.Link | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
lost_reasons: DF.TableMultiSelect[QuotationLostReasonDetail]
|
lost_reasons: DF.TableMultiSelect[QuotationLostReasonDetail]
|
||||||
named_place: DF.Data | None
|
named_place: DF.Data | None
|
||||||
|
|||||||
@@ -122,7 +122,6 @@ class SalesOrder(SellingController):
|
|||||||
is_internal_customer: DF.Check
|
is_internal_customer: DF.Check
|
||||||
items: DF.Table[SalesOrderItem]
|
items: DF.Table[SalesOrderItem]
|
||||||
language: DF.Link | None
|
language: DF.Link | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
loyalty_amount: DF.Currency
|
loyalty_amount: DF.Currency
|
||||||
loyalty_points: DF.Int
|
loyalty_points: DF.Int
|
||||||
|
|||||||
@@ -87,7 +87,6 @@ class DeliveryNote(SellingController):
|
|||||||
issue_credit_note: DF.Check
|
issue_credit_note: DF.Check
|
||||||
items: DF.Table[DeliveryNoteItem]
|
items: DF.Table[DeliveryNoteItem]
|
||||||
language: DF.Link | None
|
language: DF.Link | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
lr_date: DF.Date | None
|
lr_date: DF.Date | None
|
||||||
lr_no: DF.Data | None
|
lr_no: DF.Data | None
|
||||||
|
|||||||
@@ -43,7 +43,6 @@ class MaterialRequest(BuyingController):
|
|||||||
customer: DF.Link | None
|
customer: DF.Link | None
|
||||||
items: DF.Table[MaterialRequestItem]
|
items: DF.Table[MaterialRequestItem]
|
||||||
job_card: DF.Link | None
|
job_card: DF.Link | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
material_request_type: DF.Literal[
|
material_request_type: DF.Literal[
|
||||||
"Purchase",
|
"Purchase",
|
||||||
|
|||||||
@@ -87,7 +87,6 @@ class PurchaseReceipt(BuyingController):
|
|||||||
is_subcontracted: DF.Check
|
is_subcontracted: DF.Check
|
||||||
items: DF.Table[PurchaseReceiptItem]
|
items: DF.Table[PurchaseReceiptItem]
|
||||||
language: DF.Data | None
|
language: DF.Data | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
lr_date: DF.Date | None
|
lr_date: DF.Date | None
|
||||||
lr_no: DF.Data | None
|
lr_no: DF.Data | None
|
||||||
|
|||||||
@@ -114,7 +114,6 @@ class StockEntry(StockController):
|
|||||||
is_return: DF.Check
|
is_return: DF.Check
|
||||||
items: DF.Table[StockEntryDetail]
|
items: DF.Table[StockEntryDetail]
|
||||||
job_card: DF.Link | None
|
job_card: DF.Link | None
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
letter_head: DF.Link | None
|
letter_head: DF.Link | None
|
||||||
naming_series: DF.Literal["MAT-STE-.YYYY.-"]
|
naming_series: DF.Literal["MAT-STE-.YYYY.-"]
|
||||||
outgoing_stock_entry: DF.Link | None
|
outgoing_stock_entry: DF.Link | None
|
||||||
|
|||||||
@@ -46,7 +46,6 @@ class StockReconciliation(StockController):
|
|||||||
difference_amount: DF.Currency
|
difference_amount: DF.Currency
|
||||||
expense_account: DF.Link | None
|
expense_account: DF.Link | None
|
||||||
items: DF.Table[StockReconciliationItem]
|
items: DF.Table[StockReconciliationItem]
|
||||||
last_scanned_warehouse: DF.Link | None
|
|
||||||
naming_series: DF.Literal["MAT-RECO-.YYYY.-"]
|
naming_series: DF.Literal["MAT-RECO-.YYYY.-"]
|
||||||
posting_date: DF.Date
|
posting_date: DF.Date
|
||||||
posting_time: DF.Time
|
posting_time: DF.Time
|
||||||
|
|||||||
Reference in New Issue
Block a user