added business type to client basic data
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
f3193f0dc1
commit
f30cd1aeda
|
@ -152,6 +152,7 @@ export default {
|
||||||
salesPerson: 'vn-client-basic-data vn-autocomplete[ng-model="$ctrl.client.salesPersonFk"]',
|
salesPerson: 'vn-client-basic-data vn-autocomplete[ng-model="$ctrl.client.salesPersonFk"]',
|
||||||
channel: 'vn-client-basic-data vn-autocomplete[ng-model="$ctrl.client.contactChannelFk"]',
|
channel: 'vn-client-basic-data vn-autocomplete[ng-model="$ctrl.client.contactChannelFk"]',
|
||||||
transferor: 'vn-client-basic-data vn-autocomplete[ng-model="$ctrl.client.transferorFk"]',
|
transferor: 'vn-client-basic-data vn-autocomplete[ng-model="$ctrl.client.transferorFk"]',
|
||||||
|
businessType: 'vn-client-basic-data vn-autocomplete[ng-model="$ctrl.client.businessTypeFk"]',
|
||||||
saveButton: 'vn-client-basic-data button[type=submit]'
|
saveButton: 'vn-client-basic-data button[type=submit]'
|
||||||
},
|
},
|
||||||
clientFiscalData: {
|
clientFiscalData: {
|
||||||
|
|
|
@ -35,6 +35,7 @@ describe('Client Edit basicData path', () => {
|
||||||
await page.write(selectors.clientBasicData.email, 'PWallace@verdnatura.es');
|
await page.write(selectors.clientBasicData.email, 'PWallace@verdnatura.es');
|
||||||
await page.autocompleteSearch(selectors.clientBasicData.channel, 'Rumors on the streets');
|
await page.autocompleteSearch(selectors.clientBasicData.channel, 'Rumors on the streets');
|
||||||
await page.autocompleteSearch(selectors.clientBasicData.transferor, 'Max Eisenhardt');
|
await page.autocompleteSearch(selectors.clientBasicData.transferor, 'Max Eisenhardt');
|
||||||
|
await page.autocompleteSearch(selectors.clientBasicData.businessType, 'Eventos');
|
||||||
await page.waitToClick(selectors.clientBasicData.saveButton);
|
await page.waitToClick(selectors.clientBasicData.saveButton);
|
||||||
const message = await page.waitForSnackbar();
|
const message = await page.waitForSnackbar();
|
||||||
|
|
||||||
|
@ -55,6 +56,13 @@ describe('Client Edit basicData path', () => {
|
||||||
expect(result).toEqual('David Haller');
|
expect(result).toEqual('David Haller');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should confirm the business type have been edited', async() => {
|
||||||
|
const result = await page
|
||||||
|
.waitToGetProperty(selectors.clientBasicData.businessType, 'value');
|
||||||
|
|
||||||
|
expect(result).toEqual('Eventos');
|
||||||
|
});
|
||||||
|
|
||||||
it('should confirm the email have been edited', async() => {
|
it('should confirm the email have been edited', async() => {
|
||||||
const result = await page
|
const result = await page
|
||||||
.waitToGetProperty(selectors.clientBasicData.email, 'value');
|
.waitToGetProperty(selectors.clientBasicData.email, 'value');
|
||||||
|
|
|
@ -20,6 +20,14 @@
|
||||||
rule
|
rule
|
||||||
vn-focus>
|
vn-focus>
|
||||||
</vn-textfield>
|
</vn-textfield>
|
||||||
|
<vn-autocomplete
|
||||||
|
vn-one
|
||||||
|
ng-model="$ctrl.client.businessTypeFk"
|
||||||
|
url="BusinessTypes"
|
||||||
|
show-field="description"
|
||||||
|
value-field="code"
|
||||||
|
label="Business type">
|
||||||
|
</vn-autocomplete>
|
||||||
</vn-horizontal>
|
</vn-horizontal>
|
||||||
<vn-horizontal>
|
<vn-horizontal>
|
||||||
<vn-textfield
|
<vn-textfield
|
||||||
|
|
|
@ -12,4 +12,5 @@ You can save multiple emails: >-
|
||||||
sin espacios, ejemplo: user@dominio.com, user2@dominio.com siendo el primer
|
sin espacios, ejemplo: user@dominio.com, user2@dominio.com siendo el primer
|
||||||
correo electrónico el principal
|
correo electrónico el principal
|
||||||
Contact: Contacto
|
Contact: Contacto
|
||||||
Undo changes: Deshacer cambios
|
Undo changes: Deshacer cambios
|
||||||
|
Business type: Tipo de negocio
|
Loading…
Reference in New Issue