Kevin Kok Khah Whey
2023-11-07 5ae534ab606e6f2ba5ea60914224d665b0447d5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Quintiq file version 2.0
#parent: #root
Method DisableCreate (
  output String feedback_o
) as Boolean id:Method_FormSupplyCosts_DisableCreate
{
  #keys: '[145730.1.1218001599]'
  Body:
  [*
    // Disable Create menu as more intuitive for user to create supply cost via drag and drop external supply onto account
    // Reason being: External supply has specific start, thus create via menu would be too 'free-form' as user unnecessarily need to
    // select same start date as an external supply (not intuitive)
    feedback_o := Translations::MP_AccountCost_SupplyCost_CreateViaDragAndDrop();
    return false;
  *]
}