Commit 2702ac1c by Elias Sarraf

ver 0.9.15.7 deployed to webapps

parent 6c810f28
...@@ -19,7 +19,7 @@ type ...@@ -19,7 +19,7 @@ type
FUnauthorizedAccessProc: TUnauthorizedAccessProc; FUnauthorizedAccessProc: TUnauthorizedAccessProc;
public public
const clientVersion = '0.9.15.6'; const clientVersion = '0.9.15.7';
procedure InitApp(SuccessProc: TSuccessProc; procedure InitApp(SuccessProc: TSuccessProc;
UnauthorizedAccessProc: TUnauthorizedAccessProc); UnauthorizedAccessProc: TUnauthorizedAccessProc);
procedure SetClientConfig(Callback: TVersionCheckCallback); procedure SetClientConfig(Callback: TVersionCheckCallback);
......
...@@ -545,37 +545,36 @@ begin ...@@ -545,37 +545,36 @@ begin
begin begin
input.classList.add('changed-field'); input.classList.add('changed-field');
change := true; change := true;
xdwdsItemsname.AsString := string(item['name']);
end end
else else
input.classList.remove('changed-field'); input.classList.remove('changed-field');
xdwdsItemsname.AsString := string(item['name']);
input := TJSHTMLInputElement(document.getElementById('edtdescription')); input := TJSHTMLInputElement(document.getElementById('edtdescription'));
if string(item['description']) <> xdwdsItemsdescription.AsString then if string(item['description']) <> xdwdsItemsdescription.AsString then
begin begin
input.classList.add('changed-field'); input.classList.add('changed-field');
change := true; change := true;
xdwdsItemsdescription.AsString := string(item['description']);
end end
else else
input.classList.remove('changed-field'); input.classList.remove('changed-field');
xdwdsItemsdescription.AsString := string(item['description']);
input := TJSHTMLInputElement(document.getElementById('lblactive')); input := TJSHTMLInputElement(document.getElementById('lblactive'));
if string(item['status']) <> xdwdsItemsstatus.AsString then if string(item['status']) <> xdwdsItemsstatus.AsString then
begin begin
input.classList.add('changed-field-label'); input.classList.add('changed-field-label');
change := true; change := true;
xdwdsItemsstatus.AsString := string(item['status']);
end end
else else
input.classList.remove('changed-field-label'); input.classList.remove('changed-field-label');
xdwdsItemsstatus.AsString := string(item['status']);
xdwdsItemsQB_ID.AsString := string(item['QB_ID']);
if string(item['QB_ID']) <> xdwdsItemsQB_ID.AsString then if string(item['QB_ID']) <> xdwdsItemsQB_ID.AsString then
begin begin
change := true; change := true;
end;
xdwdsItemsQB_ID.AsString := string(item['QB_ID']); xdwdsItemsQB_ID.AsString := string(item['QB_ID']);
end;
xdwdsItems.Post; xdwdsItems.Post;
Utils.HideSpinner('spinner'); Utils.HideSpinner('spinner');
......
...@@ -114,11 +114,11 @@ ...@@ -114,11 +114,11 @@
<VerInfo_Locale>1033</VerInfo_Locale> <VerInfo_Locale>1033</VerInfo_Locale>
<DCC_ExeOutput>.\bin</DCC_ExeOutput> <DCC_ExeOutput>.\bin</DCC_ExeOutput>
<DCC_UnitSearchPath>C:\RADTOOLS\FastMM4;$(DCC_UnitSearchPath)</DCC_UnitSearchPath> <DCC_UnitSearchPath>C:\RADTOOLS\FastMM4;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
<VerInfo_Keys>CompanyName=EM Systems;FileDescription=$(MSBuildProjectName);FileVersion=0.9.15.6;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=0.9.11;Comments=</VerInfo_Keys> <VerInfo_Keys>CompanyName=EM Systems;FileDescription=$(MSBuildProjectName);FileVersion=0.9.15.7;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=0.9.11;Comments=</VerInfo_Keys>
<VerInfo_MajorVer>0</VerInfo_MajorVer> <VerInfo_MajorVer>0</VerInfo_MajorVer>
<VerInfo_MinorVer>9</VerInfo_MinorVer> <VerInfo_MinorVer>9</VerInfo_MinorVer>
<VerInfo_Release>15</VerInfo_Release> <VerInfo_Release>15</VerInfo_Release>
<VerInfo_Build>6</VerInfo_Build> <VerInfo_Build>7</VerInfo_Build>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''"> <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode> <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment