Add: implement Find Parts functionality across BusinessOpportunity, CustomerOrder, CustomerOrderLineBaseList, and SalesQuotation components
parent
d55465f85d
commit
59aec3dabf
@ -0,0 +1,60 @@
|
|||||||
|
client BusinessOpportunity;
|
||||||
|
component CRM;
|
||||||
|
layer Cust;
|
||||||
|
description "Put some useful description here ...";
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------- FRAGMENTS ---------------------------------
|
||||||
|
|
||||||
|
----------------------------- NAVIGATOR ENTRIES -----------------------------
|
||||||
|
|
||||||
|
-------------------------------- MAIN PAGES ---------------------------------
|
||||||
|
@Override
|
||||||
|
page OpportunityDetailPage using BusinessOpportunities {
|
||||||
|
|
||||||
|
command FindPartbyCharacteristics;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
--------------------------------- COMMANDS ----------------------------------
|
||||||
|
command FindPartbyCharacteristics for BusinessOpportunity {
|
||||||
|
label = "Find Parts";
|
||||||
|
execute {
|
||||||
|
navigate "assistant/FindPartByCharacteristics/FindPartByCharacteristicsAssistant";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
--------------------------------- SELECTORS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- GROUPS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------- LISTS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- DIALOGS ----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
-------------------------------- SINGLETONS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- CHARTS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------- CALENDERS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- SHEETS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------- STATE INDICATORS ------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------- TREES -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- PLUGINS ----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
------------------------------- IMAGE VIEWERS -------------------------------
|
||||||
@ -0,0 +1,59 @@
|
|||||||
|
client CustomerOrder;
|
||||||
|
component ORDER;
|
||||||
|
layer Cust;
|
||||||
|
description "Find parts customization - Cloud Uplift";
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------- FRAGMENTS ---------------------------------
|
||||||
|
|
||||||
|
----------------------------- NAVIGATOR ENTRIES -----------------------------
|
||||||
|
|
||||||
|
-------------------------------- MAIN PAGES ---------------------------------
|
||||||
|
@Override
|
||||||
|
page Form using CustomerOrderSet {
|
||||||
|
|
||||||
|
command FindPartbyCharacteristics;
|
||||||
|
|
||||||
|
}
|
||||||
|
--------------------------------- COMMANDS ----------------------------------
|
||||||
|
command FindPartbyCharacteristics for CustomerOrder {
|
||||||
|
label = "Find Parts";
|
||||||
|
execute {
|
||||||
|
navigate "assistant/FindPartByCharacteristics/FindPartByCharacteristicsAssistant";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
--------------------------------- SELECTORS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- GROUPS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------- LISTS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- DIALOGS ----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
-------------------------------- SINGLETONS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- CHARTS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------- CALENDERS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- SHEETS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------- STATE INDICATORS ------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------- TREES -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- PLUGINS ----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
------------------------------- IMAGE VIEWERS -------------------------------
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
fragment CustomerOrderLineBaseList;
|
||||||
|
component ORDER;
|
||||||
|
layer Cust;
|
||||||
|
description "Put some useful description here ...";
|
||||||
|
|
||||||
|
--------------------------------- FRAGMENTS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------- CLIENT FRAGMENTS ------------------------------
|
||||||
|
--------------------------------- COMMANDS ----------------------------------
|
||||||
|
command FindPartbyCharacteristics {
|
||||||
|
label = "Find Parts";
|
||||||
|
execute {
|
||||||
|
navigate "assistant/FindPartByCharacteristics/FindPartByCharacteristicsAssistant";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
----------------------------------- LISTS -----------------------------------
|
||||||
|
@Override
|
||||||
|
list CustomerOrderLineBaseList for CustomerOrderLine {
|
||||||
|
command FindPartbyCharacteristics;
|
||||||
|
}
|
||||||
|
--------------------------- PROJECTION FRAGMENTS ----------------------------
|
||||||
@ -0,0 +1,59 @@
|
|||||||
|
client SalesQuotation;
|
||||||
|
component ORDER;
|
||||||
|
layer Cust;
|
||||||
|
description "Find parts customization - Cloud Uplift";
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------- FRAGMENTS ---------------------------------
|
||||||
|
----------------------------- NAVIGATOR ENTRIES -----------------------------
|
||||||
|
|
||||||
|
-------------------------------- MAIN PAGES ---------------------------------
|
||||||
|
@Override
|
||||||
|
page Form using OrderQuotationSet {
|
||||||
|
|
||||||
|
command FindPartbyCharacteristics;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
--------------------------------- COMMANDS ----------------------------------
|
||||||
|
command FindPartbyCharacteristics for OrderQuotation {
|
||||||
|
label = "Find Parts";
|
||||||
|
execute {
|
||||||
|
navigate "assistant/FindPartByCharacteristics/FindPartByCharacteristicsAssistant";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
--------------------------------- SELECTORS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- GROUPS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------- LISTS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- DIALOGS ----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
-------------------------------- SINGLETONS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- CHARTS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------- CALENDERS ---------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- SHEETS -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------- STATE INDICATORS ------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
----------------------------------- TREES -----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------------- PLUGINS ----------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
------------------------------- IMAGE VIEWERS -------------------------------
|
||||||
Loading…
Reference in New Issue