¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | Method SynchronizeOrders ( |
| | | MacroPlan macroPlan |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | info( "产å个æ°ï¼", macroPlan.Product_MP( relsize ) ); |
| | | |
| | | traverse ( this, PanelMaterialAll, pma ) { |
| | | if ( pma.BusinessType() = "汽车çµå" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialAutomotiveElectronics( macroPlan, pma ); |
| | | } else if ( pma.BusinessType() = "IT" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialIT( macroPlan, pma ); |
| | | } else if ( pma.BusinessType() = "䏿¾" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialSpecializedDisplay( macroPlan, pma ); |
| | | } else if ( pma.BusinessType() = "è¿å¨å¥åº·" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialSportsHealth( macroPlan, pma ); |
| | | } else if ( pma.BusinessType() = "天å" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialTianHua( macroPlan, pma ); |
| | | } else if ( pma.BusinessType() = "TM17" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialTM17( macroPlan, pma ); |
| | | } else if ( pma.BusinessType() = "TM18" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialTM18( macroPlan, pma ); |
| | | } else if ( pma.BusinessType() = "车载" ) { |
| | | PanelMaterialAll::SynchronizePanelMaterialVehicle( macroPlan, pma ); |
| | | } |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialAutomotiveElectronics ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialAutomotiveElectronics, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialIT ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialIT, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialSpecializedDisplay ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialSpecializedDisplay, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialSportsHealth ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialSportsHealth, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialTM17 ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialTM17, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialTM18 ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialTM18, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialTianHua ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialTianHua, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | StaticMethod SynchronizePanelMaterialVehicle ( |
| | | MacroPlan macroPlan, |
| | | PanelMaterialAll pma |
| | | ) |
| | | { |
| | | TextBody: |
| | | [* |
| | | traverse ( pma, PanelMaterialVehicle, pm ) { |
| | | targetProduct_MP := select( macroPlan, Product_MP, tempPMP, tempPMP.ID() = pm.ProductID() ); |
| | | if ( isnull( targetProduct_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨äº§åï¼", pm.ProductID() ); |
| | | } |
| | | targetStockingPoint_MP := select( macroPlan, StockingPoint_MP, tempSPMP, tempSPMP.ID() = "æåä»" ); |
| | | if ( isnull( targetStockingPoint_MP ) ) { |
| | | error( "èåæ°æ®å¤±è´¥ï¼ä¸åå¨åºåç¹ï¼", pm.StockingPointID() ); |
| | | } |
| | | |
| | | CustomerOrder::Create( targetProduct_MP, |
| | | targetStockingPoint_MP, |
| | | pm.ID(), |
| | | pm.OrderDate(), |
| | | [Real]pm.Quantity(), |
| | | [Real]pm.Price(), |
| | | pm.PriorityName(), |
| | | pm.SalesSegmentName(), |
| | | pm.CurrencyID(), |
| | | pm.UnitOfMeasureName(), |
| | | false, |
| | | pm.Customer(), |
| | | pm.CustomerID(), |
| | | "", |
| | | "", |
| | | true, |
| | | true, |
| | | false |
| | | ); |
| | | } |
| | | *] |
| | | } |
| | |
| | | { |
| | | #keys: '5[414702.0.203671414][414702.0.203671412][0.0.0][414702.0.203671413][414702.0.203671415]' |
| | | BaseType: Object |
| | | Description: '天è±' |
| | | Description: '天å' |
| | | StructuredName: 'PanelMaterialTianHuas' |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | Component pnlActions |
| | | { |
| | | #keys: '[414702.0.213381912]' |
| | | BaseType: 'WebPanel' |
| | | Children: |
| | | [ |
| | | Component btnOk |
| | | { |
| | | #keys: '[414702.0.213381916]' |
| | | BaseType: 'WebButton' |
| | | Properties: |
| | | [ |
| | | Label: 'OK' |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component btnCancel |
| | | { |
| | | #keys: '[414702.0.213381918]' |
| | | BaseType: 'WebButton' |
| | | Properties: |
| | | [ |
| | | Label: 'Cancel' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | | Alignment: 'trailing' |
| | | Border: true |
| | | ExcludeFromActiveComponent: true |
| | | FixedSize: true |
| | | Orientation: 'horizontal' |
| | | Padding: 'true' |
| | | Style: 'footer' |
| | | Taborder: 1 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | Component pnlContent |
| | | { |
| | | #keys: '[414702.0.213381910]' |
| | | BaseType: 'WebPanel' |
| | | Children: |
| | | [ |
| | | #child: pnlReceiveDatas |
| | | #child: pnlSelectVersion |
| | | ] |
| | | Properties: |
| | | [ |
| | | Padding: 'true' |
| | | Taborder: 0 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | Component pnlReceiveDatas |
| | | { |
| | | #keys: '[414702.0.213382696]' |
| | | BaseType: 'WebPanel' |
| | | Children: |
| | | [ |
| | | Component lblTianHua |
| | | { |
| | | #keys: '[414702.0.212183780]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: '天åï¼' |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component lblSpecializedDisplay |
| | | { |
| | | #keys: '[414702.0.212183799]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: '䏿¾ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | Component lblIT |
| | | { |
| | | #keys: '[414702.0.212183811]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: 'ITï¼' |
| | | Taborder: 2 |
| | | ] |
| | | } |
| | | Component lblMaterialVehicle |
| | | { |
| | | #keys: '[414702.0.212183824]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: '车载ï¼' |
| | | Taborder: 3 |
| | | ] |
| | | } |
| | | Component lblTM17 |
| | | { |
| | | #keys: '[414702.0.212183836]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: 'TM17ï¼' |
| | | Taborder: 4 |
| | | ] |
| | | } |
| | | Component lblTM18 |
| | | { |
| | | #keys: '[414702.0.212183849]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: 'TM18ï¼' |
| | | Taborder: 5 |
| | | ] |
| | | } |
| | | Component lblSportsHealth |
| | | { |
| | | #keys: '[414702.0.212183868]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: 'è¿å¨å¥åº·ï¼' |
| | | Taborder: 6 |
| | | ] |
| | | } |
| | | Component lblAutomotiveElectronics |
| | | { |
| | | #keys: '[414702.0.212172592]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | Label: '汽车çµåï¼' |
| | | Taborder: 7 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | | Border: true |
| | | FixedSize: true |
| | | MinimumColumns: 1 |
| | | MinimumRows: 1 |
| | | Taborder: 0 |
| | | Title: 'æåæ¥æ¶æ¶é´' |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | Component pnlSelectVersion |
| | | { |
| | | #keys: '[414702.0.215071882]' |
| | | BaseType: 'WebPanel' |
| | | Children: |
| | | [ |
| | | Component ddlSelectVersion |
| | | { |
| | | #keys: '[414702.0.215071927]' |
| | | BaseType: 'WebDropDownList' |
| | | Databinding: 'ScenarioMP' |
| | | Children: |
| | | [ |
| | | Component deSelectVersion |
| | | { |
| | | #keys: '[414702.0.215071929]' |
| | | BaseType: 'WebDataExtractor' |
| | | Properties: |
| | | [ |
| | | DataType: 'ScenarioManager' |
| | | FixedFilter: 'object.IsLoaded() and not object.IsDeleted()' |
| | | Source: 'ScenarioManager' |
| | | Taborder: 0 |
| | | Transformation: 'ScenarioMP' |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | | DisplayField: 'Name' |
| | | Label: 'éæ©çæ¬' |
| | | NumberOfColumns: 50 |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | | Border: true |
| | | FixedSize: true |
| | | MinimumColumns: 1 |
| | | MinimumRows: 1 |
| | | Taborder: 1 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: #root |
| | | Method FusionData () id:Method_DialogFusionData_FusionData |
| | | { |
| | | #keys: '[414702.0.213324055]' |
| | | Body: |
| | | [* |
| | | ApplicationMacroPlanner.ShowFormModal( this ); |
| | | *] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlActions/btnCancel |
| | | Response OnClick () id:Response_pnlActions_btnCancel_OnClick |
| | | { |
| | | #keys: '[414702.0.213381922]' |
| | | DefinitionID: 'Responsedef_WebButton_OnClick' |
| | | GroupServerCalls: true |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | Form.Close(); |
| | | *] |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlActions/btnOk |
| | | Response OnClick () id:Response_pnlActions_btnOk_OnClick |
| | | { |
| | | #keys: '[414702.0.213381921]' |
| | | DefinitionID: 'Responsedef_WebButton_OnClick' |
| | | Precondition: |
| | | [* |
| | | return not isnull( GlobalOTDTable ); |
| | | *] |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | Form.ApplyChanges(); |
| | | try { |
| | | macroPlan := ExternalMDSEditor::MacroPlan( ddlSelectVersion.Data().DatasetName() ).AsMacroPlan(); |
| | | GlobalOTDTable.SynchronizeOrders( macroPlan ); |
| | | |
| | | Form.Close(); |
| | | |
| | | WebMessageBox::Success( "èåæ°æ®æåï¼", true ); |
| | | } onerror { |
| | | Form.Close(); |
| | | WebMessageBox::Error( e.GeneralInformation(), true ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblAutomotiveElectronics |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblAutomotiveElectronics_OnCreated |
| | | { |
| | | #keys: '[414702.0.215042189]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "汽车çµå" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblIT |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblIT_OnCreated |
| | | { |
| | | #keys: '[414702.0.215041419]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "IT" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblMaterialVehicle |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblMaterialVehicle_OnCreated |
| | | { |
| | | #keys: '[414702.0.215041505]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "车载" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblSpecializedDisplay |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblSpecializedDisplay_OnCreated |
| | | { |
| | | #keys: '[414702.0.215041332]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "䏿¾" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblSportsHealth |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblSportsHealth_OnCreated |
| | | { |
| | | #keys: '[414702.0.215042103]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "è¿å¨å¥åº·" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblTM17 |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblTM17_OnCreated |
| | | { |
| | | #keys: '[414702.0.215041591]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "TM17" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblTM18 |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblTM18_OnCreated |
| | | { |
| | | #keys: '[414702.0.215041677]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | Precondition: |
| | | [* |
| | | |
| | | *] |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "TM18" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: pnlReceiveDatas/lblTianHua |
| | | Response OnCreated () id:Response_pnlReceiveDatas_lblTianHua_OnCreated |
| | | { |
| | | #keys: '[414702.0.213744488]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "天å" ); |
| | | this.Text( guard( targetPanelMaterialAll.ReleaseDate(), "æ æ°æ®" ) ); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #root |
| | | #parent: MacroPlannerWebApp |
| | | OrphanComponent DialogFusionData |
| | | { |
| | | #keys: '[414702.0.213381908]' |
| | | BaseType: 'WebForm' |
| | | Children: |
| | | [ |
| | | #child: pnlContent |
| | | #child: pnlActions |
| | | ] |
| | | Properties: |
| | | [ |
| | | Alignment: 'trailing' |
| | | EnterButton: 'btnOk' |
| | | EscapeButton: 'btnCancel' |
| | | ExcludeFromActiveComponent: true |
| | | Image: 'CD_GOLD' |
| | | Padding: 'false' |
| | | Title: 'èåæ°æ®' |
| | | ] |
| | | } |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | Taborder: 2 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelIT |
| | | Response OnCreated () id:Response_FormPanelMaterialIT_DataHolderPanelIT_OnCreated |
| | | { |
| | | #keys: '[414702.0.211822171]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "IT" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelIT |
| | | Response OnDataChanged () id:Response_FormPanelMaterialIT_DataHolderPanelIT_OnDataChanged |
| | | { |
| | | #keys: '[414702.0.211822170]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnDataChanged' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "IT" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Children: |
| | | [ |
| | | #child: ListPanelMaterialIT |
| | | Component DataHolderPanelIT |
| | | { |
| | | #keys: '[414702.0.211822173]' |
| | | BaseType: 'WebDataHolder' |
| | | Databinding: 'PanelMaterialAll' |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component LabelLastSent |
| | | { |
| | | #keys: '[414702.0.211822232]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | DataBinding: 'DataHolderPanelIT.Data.ReleaseDate' |
| | | Label: '䏿¬¡åéæ¶é´ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | Taborder: 2 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelAutomotiveElectronics |
| | | Response OnCreated () id:Response_FormPanelMaterialAutomotiveElectronics_DataHolderPanelAutomotiveElectronics_OnCreated |
| | | { |
| | | #keys: '[414702.0.211782554]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "汽车çµå" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelAutomotiveElectronics |
| | | Response OnDataChanged () id:Response_FormPanelMaterialAutomotiveElectronics_DataHolderPanelAutomotiveElectronics_OnDataChanged |
| | | { |
| | | #keys: '[414702.0.211782555]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnDataChanged' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "汽车çµå" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Children: |
| | | [ |
| | | #child: ListPanelMaterialAutomotiveElectronics |
| | | Component DataHolderPanelAutomotiveElectronics |
| | | { |
| | | #keys: '[414702.0.211782557]' |
| | | BaseType: 'WebDataHolder' |
| | | Databinding: 'PanelMaterialAll' |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component LabelLastSent id:LabelLastSent_680 |
| | | { |
| | | #keys: '[414702.0.211782616]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | DataBinding: 'DataHolderPanelAutomotiveElectronics.Data.ReleaseDate' |
| | | Label: '䏿¬¡åéæ¶é´ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | Taborder: 2 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelSpecializedDisplay |
| | | Response OnCreated () id:Response_FormPanelMaterialSpecializedDisplay_DataHolderPanelSpecializedDisplay_OnCreated |
| | | { |
| | | #keys: '[414702.0.211782227]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "䏿¾" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelSpecializedDisplay |
| | | Response OnDataChanged () id:Response_FormPanelMaterialSpecializedDisplay_DataHolderPanelSpecializedDisplay_OnDataChanged |
| | | { |
| | | #keys: '[414702.0.211782228]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnDataChanged' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "䏿¾" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Children: |
| | | [ |
| | | #child: ListPanelMaterialSpecializedDisplay |
| | | Component DataHolderPanelSpecializedDisplay |
| | | { |
| | | #keys: '[414702.0.211782230]' |
| | | BaseType: 'WebDataHolder' |
| | | Databinding: 'PanelMaterialAll' |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component LabelLastSent id:LabelLastSent_452 |
| | | { |
| | | #keys: '[414702.0.211519610]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | DataBinding: 'DataHolderPanelSpecializedDisplay.Data.ReleaseDate' |
| | | Label: '䏿¬¡åéæ¶é´ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | Taborder: 2 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelSportsHealth |
| | | Response OnCreated () id:Response_FormPanelMaterialSportsHealth_DataHolderPanelSportsHealth_OnCreated |
| | | { |
| | | #keys: '[414702.0.211819877]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "è¿å¨å¥åº·" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelSportsHealth |
| | | Response OnDataChanged () id:Response_FormPanelMaterialSportsHealth_DataHolderPanelSportsHealth_OnDataChanged |
| | | { |
| | | #keys: '[414702.0.211819876]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnDataChanged' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "è¿å¨å¥åº·" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Children: |
| | | [ |
| | | #child: ListPanelMaterialSportsHealth |
| | | Component DataHolderPanelSportsHealth |
| | | { |
| | | #keys: '[414702.0.211819879]' |
| | | BaseType: 'WebDataHolder' |
| | | Databinding: 'PanelMaterialAll' |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component LabelLastSent |
| | | { |
| | | #keys: '[414702.0.211821961]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | DataBinding: 'DataHolderPanelSportsHealth.Data.ReleaseDate' |
| | | Label: '䏿¬¡åéæ¶é´ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | Taborder: 2 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelTM17 |
| | | Response OnCreated () id:Response_FormPanelMaterialTM17_DataHolderPanelTM17_OnCreated |
| | | { |
| | | #keys: '[414702.0.211884009]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "TM17" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelTM17 |
| | | Response OnDataChanged () id:Response_FormPanelMaterialTM17_DataHolderPanelTM17_OnDataChanged |
| | | { |
| | | #keys: '[414702.0.211884008]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnDataChanged' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "TM17" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Children: |
| | | [ |
| | | #child: ListPanelMaterialTM |
| | | Component DataHolderPanelTM17 |
| | | { |
| | | #keys: '[414702.0.211884011]' |
| | | BaseType: 'WebDataHolder' |
| | | Databinding: 'PanelMaterialAll' |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component LabelLastSent |
| | | { |
| | | #keys: '[414702.0.211884076]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | DataBinding: 'DataHolderPanelTM17.Data.ReleaseDate' |
| | | Label: '䏿¬¡åéæ¶é´ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | Taborder: 2 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelTM18 |
| | | Response OnCreated () id:Response_FormPanelMaterialTM18_DataHolderPanelTM18_OnCreated |
| | | { |
| | | #keys: '[414702.0.211683113]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "TM18" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelTM18 |
| | | Response OnDataChanged () id:Response_FormPanelMaterialTM18_DataHolderPanelTM18_OnDataChanged |
| | | { |
| | | #keys: '[414702.0.211683114]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnDataChanged' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "TM18" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Children: |
| | | [ |
| | | #child: ListPanelMaterialTM |
| | | Component DataHolderPanelTM18 |
| | | { |
| | | #keys: '[414702.0.211683116]' |
| | | BaseType: 'WebDataHolder' |
| | | Databinding: 'PanelMaterialAll' |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component LabelLastSent id:LabelLastSent_969 |
| | | { |
| | | #keys: '[414702.0.211561471]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | DataBinding: 'DataHolderPanelTM18.Data.ReleaseDate' |
| | | Label: '䏿¬¡åéæ¶é´ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | Taborder: 2 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelTianHua |
| | | Response OnCreated () id:Response_FormPanelMaterialTianHua_DataHolderPanelTianHua_OnCreated |
| | | { |
| | | #keys: '[414702.0.211890766]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnCreated' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "天å" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: DataHolderPanelTianHua |
| | | Response OnDataChanged () id:Response_FormPanelMaterialTianHua_DataHolderPanelTianHua_OnDataChanged |
| | | { |
| | | #keys: '[414702.0.211890767]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebComponent_OnDataChanged' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | targetPanelMaterialAll := select( GlobalOTDTable, PanelMaterialAll, tempPMA, tempPMA.BusinessType() = "天å" ); |
| | | if ( not isnull( targetPanelMaterialAll ) ) { |
| | | this.Data( targetPanelMaterialAll ); |
| | | } |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Children: |
| | | [ |
| | | #child: ListPanelMaterialTianHua |
| | | Component DataHolderPanelTianHua |
| | | { |
| | | #keys: '[414702.0.211890769]' |
| | | BaseType: 'WebDataHolder' |
| | | Databinding: 'PanelMaterialAll' |
| | | Properties: |
| | | [ |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component LabelLastSent id:LabelLastSent_662 |
| | | { |
| | | #keys: '[414702.0.211781782]' |
| | | BaseType: 'WebLabel' |
| | | Properties: |
| | | [ |
| | | DataBinding: 'DataHolderPanelTianHua.Data.ReleaseDate' |
| | | Label: '䏿¬¡åéæ¶é´ï¼' |
| | | Taborder: 1 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |
| | |
| | | ] |
| | | Properties: |
| | | [ |
| | | Taborder: 2 |
| | | Taborder: 3 |
| | | ] |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | Quintiq file version 2.0 |
| | | #parent: ButtonFusionData |
| | | Response OnClick () id:Response_FormPanelMaterialVehicle_ButtonFusionData_OnClick |
| | | { |
| | | #keys: '[414702.0.212120934]' |
| | | CanBindMultiple: false |
| | | DefinitionID: 'Responsedef_WebButton_OnClick' |
| | | QuillAction |
| | | { |
| | | Body: |
| | | [* |
| | | dlg := construct( DialogFusionData ); |
| | | dlg.FusionData(); |
| | | *] |
| | | GroupServerCalls: false |
| | | } |
| | | } |
| | |
| | | Taborder: 0 |
| | | ] |
| | | } |
| | | Component ButtonFusionData |
| | | { |
| | | #keys: '[414702.0.212142601]' |
| | | BaseType: 'WebButton' |
| | | Properties: |
| | | [ |
| | | Image: 'COOLING_TOWER' |
| | | Label: 'èåæ°æ®' |
| | | Taborder: 2 |
| | | ] |
| | | } |
| | | ] |
| | | Properties: |
| | | [ |