23 lines
537 B
JavaScript
23 lines
537 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
|
|
export default class Controller extends Section {
|
|
setDefaultDate(hasData) {
|
|
if (hasData && !this.clientUnpaid.dated)
|
|
this.clientUnpaid.dated = Date.vnNew();
|
|
}
|
|
|
|
onSubmit() {
|
|
this.$.watcher.submit()
|
|
.then(() => this.card.reload());
|
|
}
|
|
}
|
|
|
|
ngModule.vnComponent('vnClientUnpaid', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
require: {
|
|
card: '^vnClientCard'
|
|
}
|
|
});
|