Commit 2702ac1c by Elias Sarraf

ver 0.9.15.7 deployed to webapps

parent 6c810f28
......@@ -19,7 +19,7 @@ type
FUnauthorizedAccessProc: TUnauthorizedAccessProc;
public
const clientVersion = '0.9.15.6';
const clientVersion = '0.9.15.7';
procedure InitApp(SuccessProc: TSuccessProc;
UnauthorizedAccessProc: TUnauthorizedAccessProc);
procedure SetClientConfig(Callback: TVersionCheckCallback);
......
......@@ -545,37 +545,36 @@ begin
begin
input.classList.add('changed-field');
change := true;
xdwdsItemsname.AsString := string(item['name']);
end
else
input.classList.remove('changed-field');
xdwdsItemsname.AsString := string(item['name']);
input := TJSHTMLInputElement(document.getElementById('edtdescription'));
if string(item['description']) <> xdwdsItemsdescription.AsString then
begin
input.classList.add('changed-field');
change := true;
xdwdsItemsdescription.AsString := string(item['description']);
end
else
input.classList.remove('changed-field');
xdwdsItemsdescription.AsString := string(item['description']);
input := TJSHTMLInputElement(document.getElementById('lblactive'));
if string(item['status']) <> xdwdsItemsstatus.AsString then
begin
input.classList.add('changed-field-label');
change := true;
xdwdsItemsstatus.AsString := string(item['status']);
end
else
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
begin
change := true;
xdwdsItemsQB_ID.AsString := string(item['QB_ID']);
end;
xdwdsItemsQB_ID.AsString := string(item['QB_ID']);
xdwdsItems.Post;
Utils.HideSpinner('spinner');
......
......@@ -114,11 +114,11 @@
<VerInfo_Locale>1033</VerInfo_Locale>
<DCC_ExeOutput>.\bin</DCC_ExeOutput>
<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_MinorVer>9</VerInfo_MinorVer>
<VerInfo_Release>15</VerInfo_Release>
<VerInfo_Build>6</VerInfo_Build>
<VerInfo_Build>7</VerInfo_Build>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
<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