•  

Comment Results

Review Name Created Custom Fields Content
UI-DEN-5736-1 30 Nov 2020

The object being waited for will always exist.

Instead, the buttonText should be added to the object that is being waited for. e.g.

 
your_var = names.o_treatmentStart_heparinSection
your_var["buttonText"] =  "{} DELIVERY".format(vText) 
waitForObjectExists(your_var)

To address this problem, in my current Dialin Branch I've created a dict_update convenience function that allows you to add or update a dictionary's key and value. It will return a new dictionary object without modifying the original. The default python update call modifies the original and doesn't return a new object. So, using dict_update allows a simple one-liner for situations like these.

Once merged with my branch, you can use

ui.utils.dict_update

and this operation can be simplified to a one-liner:

waitForObjectExists(dict_update(names.o_treatmentStart_heparinSection, "buttonText", "{} DELIVERY".format(vText)))
DG-DEN-3421-2-1 07 Dec 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-5873-1 07 Dec 2020

RESOLVED in CODE WALKTHROUGH.

UI-DEN-6349-1 11 Jan 2021

You can't adjust the size of the keyboard, change what buttons are available, or adjust the opaque black background that's blocking half the screen without adjusting the styling.

In here you will find a couple of screenshots for comparison:

Default numeric styling:
X:\Users\PeterL\ForBehrouz\Vitals_Entry_Default_Numeric_Keyboard.png

Custom numeric styling:
X:\Users\PeterL\ForBehrouz\Vitals_Numeric_Keyboard.png

Full Qwerty Keyboard with default styling:
X:\Users\PeterL\ForBehrouz\Full_Qwerty_Keyboard.png

DG-DEN-5864-1 07 Dec 2020

RESOLVED in CODE WALKTHROUGH.

UI-DEN-5830-2 12 Jan 2021

AlarmClearedConditionData is commented out above but this one remains?

UI-DEN-5830-2 12 Jan 2021

By using the template function notify in lines 349,350,351 they are not required anymore.
This shows how good/correct implementation helps to have a clean code.

UI-DEN-5830-2 12 Jan 2021

there were useless tests where the QVerify and QCompare were removed from them after using the template function notify.

UI-DEN-5830-2 12 Jan 2021

deleted

UI-DEN-5830-2 12 Jan 2021

Will there be gaps in code coverage with these removed?

UI-DEN-6349-1 13 Jan 2021

Done, see TextEntry.qml

UI-DEN-6349-1 13 Jan 2021

Done

UI-DEN-6349-1 13 Jan 2021

Done

UI-DEN-6349-1 12 Jan 2021

Done

UI-DEN-5830-2 12 Jan 2021

Application is spelled wrong
What is this for?

UI-DEN-5830-2 13 Jan 2021

RESOLVED

UI-DEN-4860-BLE-1 13 Jan 2021

See response above

DIALIN-DEN-5830-2 13 Jan 2021

RESOLVED

UI-DEN-6349-1 08 Jan 2021

please use (const &) for all the slots down here.

UI-DEN-4860-BLE-1 13 Jan 2021

Why this color has been chosen, I don't see it in the UX design?
Also, we already have the same icon with a white background.

UI-DEN-6349-1 13 Jan 2021

where the acceptableInput comes from the TextEntry component doesn't have such a property?

HD-DEN-6200-1 18 Jan 2021

Fixed. This signal indicates the start of treatment.

UI-DEN-4860-BLE-1 13 Jan 2021

Please move it after # CANBus section.

UI-DEN-4860-BLE-1 18 Jan 2021

RESOLVED

UI-DEN-4860-BLE-1 12 Jan 2021

the coverage is done without these object names on the Alarm design branch please remove them.

UI-DEN-5282-1 28 Oct 2020

utils is imported twice

DG-DEN-3421-1 20 Oct 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-5855-1 10 Dec 2020

Mismatch function name.

DG-DEN-5855-1 10 Dec 2020

Update param info.

DG-DEN-5855-1 10 Dec 2020

Add TODO.

UI-DEN-4964-1 20 Oct 2020

RESOLVED

After looking into this, VIEW_DEF does not support bidirectional messaging but it should be okay in this case since you are just reading data from FW.

DG-DEN-3421-1 26 Oct 2020

Done

HD-DEN-5674-2 30 Dec 2020

Fixed.

DG-DEN-3421-1 26 Oct 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-3421-2-1 11 Nov 2020

I fixed the equation and renamed the variables.

UI-DEN-4598-1 09 Nov 2020

http://dvm-linux02:8060/cru/UI-DEN-4598-1#c5961

UI-DEN-4598-1 09 Nov 2020

shouldn't be _treatmentBegin(Button/StartButton/TouchRect/Rect).

DG-DEN-5963-1 12 Apr 2021

RESOLVED in CODE WALKTHROUGH.

HD-DEN-5674-2 30 Dec 2020

Fixed.

DG-DEN-3421-2-1 11 Nov 2020

Added it statements to check for the caps.

DG-DEN-3504-1 10 Nov 2020

Again, just look at primary load cell for functional determinations. Redundant is just for safety. However, we do want to tare both when it's time.

HD-DEN-5674-2 30 Dec 2020

Fixed.

UI-DEN-4598-1 09 Nov 2020

Be careful of using this.
When you push and pop in order it's fine but when pop to an item randomly it's not safe.
If the object is not currently in the stack you may get an error and I don't know what is going to happen to the Application !!!
preferably don't use this, it's a stack and has to be pushed and popped in order.

HD-DEN-5674-2 30 Dec 2020

Fixed.

DG-DEN-3504-1 12 Nov 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-3504-1 10 Nov 2020

Remove extra blank line.

DIALIN-DEN-4691-1 18 Nov 2020

It's an effort that can be done later when we transitioning all the APIs to use the CANMessageHandler.
All the currently defined API methods are using the same camelCase naming.
it needs also to change all the test suits we already have.
So I don't think that's what we need to address as part of this code review.

DIALIN-DEN-3504-1 18 Nov 2020

Use the Dialin enum here to avoid duplicating has_value

HD-DEN-5674-2 30 Dec 2020

Fixed.

DG-DEN-3504-1 10 Nov 2020

Add blank line between local function declarations and code.