15 lines
382 B
JavaScript
15 lines
382 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 = new Date();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ngModule.vnComponent('vnClientUnpaid', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller
|
||
|
});
|