haorenhui
2023-10-30 6d6cc10d9e8e242661da7fd655dec155a09d676c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Quintiq file version 2.0
#parent: ListInventoryValueAndCost
Response OnDrawElement (
  InventoryValueAndCost element
) id:Response_ListInventoryValueAndCost_OnDrawElement
{
  #keys: '[124808.2.601281277]'
  Body:
  [*
    // Draw an indicator for overriding cost
    // Shadow does not support image attribute, and this method cannot be grouped as method as dialog method is non-declarative
    
    img := '';
    gp := element.Product_MP().MacroPlan().GlobalParameters_MP();
    
    overridegp := gp.HasDefaultInventoryHoldingCost()
                  and gp.DefaultAccountForInventoryHolding() = element.AccountName()
                  and element.CostDriver() = Translations::MP_AccountAssignmentCostDriverInventoryHolding();
    
    overrideproduct := exists( element, Product_MP.ProductValueAndCost, pvc,
                               pvc.AccountName() = element.AccountName()
                               and pvc.CostDriver() = element.CostDriver()
                               and pvc.Start() <= element.Start() );
    
    if( overridegp or overrideproduct )
    {
      img := 'COPY';
    }
    
    drawinfo.Image( 0, img );
  *]
  CanBindMultiple: false
  DefinitionID: 'Responsedef_List_OnDrawElement'
  Precondition:
  [*
    return not isnull( MacroPlan.GlobalParameters_MP() );
  *]
}