This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using PX.Data; | |
using PX.Data.WorkflowAPI; | |
using SSCS; | |
namespace PX.Objects.PO | |
{ | |
using State = POOrderStatus; | |
using static PX.Data.WorkflowAPI.BoundedTo<POOrderEntry, POOrder>; | |
using static POOrder; | |
public class POOrderEntry_Workflow_SSCS : PXGraphExtension<POOrderEntry> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using PX.Data; | |
using PX.Objects.CS; | |
using PX.Objects.EP; | |
using System; | |
namespace CMMS | |
{ | |
[PXPrimaryGraph(typeof(WOSetupMaint))] | |
[PXCacheName(Messages.DACWOSetup)] | |
[Serializable] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using PX.Data; | |
using PX.Objects.CS; | |
using PX.Objects.EP; | |
using System; | |
namespace CMMS | |
{ | |
[PXPrimaryGraph(typeof(WOSetupMaint))] | |
[PXCacheName(Messages.DACWOSetup)] | |
[Serializable] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region UsrQtyReturned | |
[PXDecimal] | |
[PXUIField(DisplayName = Messages.FldUsrQtyReturned, Enabled = false)] | |
[PXDBScalar( | |
typeof(Search4<SOLine.orderQty, | |
Where<SOLine.origOrderType, Equal<SOShipLine.origOrderType>, | |
And<SOLine.origOrderNbr, Equal<SOShipLine.origOrderNbr>, | |
And<SOLine.origLineNbr, Equal<SOShipLine.origLineNbr>, | |
And<SOLine.origOrderNbr, IsNotNull>>>>, | |
Aggregate<Sum<SOLine.orderQty, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
BaseViewModel, PXFieldState, commitChanges, headerDescription | |
} from "client-controls"; | |
export class WOEquipment extends BaseViewModel { | |
@commitChanges EquipmentCD: PXFieldState; | |
EquipmentType : PXFieldState; | |
@commitChanges @headerDescription Descr: PXFieldState; | |
SerialNbr: PXFieldState; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<qp-shinking-panel id="filterForm"> | |
<div id="Equipment_header" wg-container class="h-stack"> | |
<div class="h-stack gray-pane col-sm-12 col-md-7 col-lg-9"> | |
<qp-fieldset id="first" view.bind="Equipment" class="col-sm-12 col-md-12 col-lg-5"> | |
<field name="EquipmentCD"></field> | |
<field name="Status"></field> | |
<field name="Descr" config-type.bind="1" config-rows.bind="3"></field> | |
</qp-fieldset> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
ScreenBaseViewModel, | |
ActionState, | |
createInstance, | |
createCollection, | |
graphInfo, | |
localizable | |
} from 'client-controls'; | |
import { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region RowUp | |
public PXAction<WOOrder> rowUp; | |
[PXButton(ImageKey = "ArrowUp", Tooltip = "Move Row Up")] | |
[PXUIField(DisplayName = " ", MapEnableRights = PXCacheRights.Update)] | |
protected IEnumerable RowUp(PXAdapter adapter) | |
{ | |
SwapRows(Transactions.Current, true); | |
return adapter.Get(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using PX.Data; | |
using PX.Data.WorkflowAPI; | |
using PX.Objects.Common; | |
using PX.Objects.CS; | |
namespace CMMS | |
{ | |
using static BoundedTo<WOOrderEntry, WOOrder>; | |
using static WOOrder; | |
using State = WOOrder.Statuses; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<px:PXSmartPanel ID="PanelReassignApproval" runat="server" Style="z-index: 108; position: absolute; left: 27px; top: 99px;" | |
Caption="Reassign Approval" | |
CaptionVisible="True" LoadOnDemand="true" AutoReload="true" Key="ReassignApprovalFilter" | |
AutoCallBack-Enabled="true" AutoCallBack-Command="Refresh" CloseButtonDialogResult="Abort"> | |
<px:PXFormView ID="formReassignApproval" runat="server" DataMember="ReassignApprovalFilter" DataSourceID="ds" Style="z-index: 100" Width="100%" | |
Caption="Reassign Approval" CaptionVisible="False" SkinID="Transparent"> | |
<Template> | |
<px:PXLayoutRule runat="server" StartColumn="True" LabelsWidth="S" ControlSize="M" ></px:PXLayoutRule> | |
<px:PXSelector DataField="NewApprover" CommitChanges="True" ID="edNewApprover" runat="server" AutoRefresh="True" ></px:PXSelector> | |
<px:PXCheckBox DataField="IgnoreApproversDelegations" CommitChanges="True" ID="chkIgnoreApproversDelegations" runat="server" ></px:PXCheckBox> |
NewerOlder