mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-16 16:15:02 +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
|
||||
items: DF.Table[PurchaseInvoiceItem]
|
||||
language: DF.Data | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
mode_of_payment: DF.Link | None
|
||||
named_place: DF.Data | None
|
||||
|
||||
@@ -147,7 +147,6 @@ class SalesInvoice(SellingController):
|
||||
is_return: DF.Check
|
||||
items: DF.Table[SalesInvoiceItem]
|
||||
language: DF.Link | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
loyalty_amount: DF.Currency
|
||||
loyalty_points: DF.Int
|
||||
|
||||
@@ -107,7 +107,6 @@ class PurchaseOrder(BuyingController):
|
||||
is_subcontracted: DF.Check
|
||||
items: DF.Table[PurchaseOrderItem]
|
||||
language: DF.Data | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
named_place: DF.Data | None
|
||||
naming_series: DF.Literal["PUR-ORD-.YYYY.-"]
|
||||
|
||||
@@ -74,7 +74,6 @@ class Quotation(SellingController):
|
||||
incoterm: DF.Link | None
|
||||
items: DF.Table[QuotationItem]
|
||||
language: DF.Link | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
lost_reasons: DF.TableMultiSelect[QuotationLostReasonDetail]
|
||||
named_place: DF.Data | None
|
||||
|
||||
@@ -122,7 +122,6 @@ class SalesOrder(SellingController):
|
||||
is_internal_customer: DF.Check
|
||||
items: DF.Table[SalesOrderItem]
|
||||
language: DF.Link | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
loyalty_amount: DF.Currency
|
||||
loyalty_points: DF.Int
|
||||
|
||||
@@ -87,7 +87,6 @@ class DeliveryNote(SellingController):
|
||||
issue_credit_note: DF.Check
|
||||
items: DF.Table[DeliveryNoteItem]
|
||||
language: DF.Link | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
lr_date: DF.Date | None
|
||||
lr_no: DF.Data | None
|
||||
|
||||
@@ -43,7 +43,6 @@ class MaterialRequest(BuyingController):
|
||||
customer: DF.Link | None
|
||||
items: DF.Table[MaterialRequestItem]
|
||||
job_card: DF.Link | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
material_request_type: DF.Literal[
|
||||
"Purchase",
|
||||
|
||||
@@ -87,7 +87,6 @@ class PurchaseReceipt(BuyingController):
|
||||
is_subcontracted: DF.Check
|
||||
items: DF.Table[PurchaseReceiptItem]
|
||||
language: DF.Data | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
lr_date: DF.Date | None
|
||||
lr_no: DF.Data | None
|
||||
|
||||
@@ -114,7 +114,6 @@ class StockEntry(StockController):
|
||||
is_return: DF.Check
|
||||
items: DF.Table[StockEntryDetail]
|
||||
job_card: DF.Link | None
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
letter_head: DF.Link | None
|
||||
naming_series: DF.Literal["MAT-STE-.YYYY.-"]
|
||||
outgoing_stock_entry: DF.Link | None
|
||||
|
||||
@@ -46,7 +46,6 @@ class StockReconciliation(StockController):
|
||||
difference_amount: DF.Currency
|
||||
expense_account: DF.Link | None
|
||||
items: DF.Table[StockReconciliationItem]
|
||||
last_scanned_warehouse: DF.Link | None
|
||||
naming_series: DF.Literal["MAT-RECO-.YYYY.-"]
|
||||
posting_date: DF.Date
|
||||
posting_time: DF.Time
|
||||
|
||||
Reference in New Issue
Block a user