2
0
mirror of https://github.com/frappe/books.git synced 2024-12-22 02:49:03 +00:00

Merge pull request #1047 from AbleKSaju/fix-sinv-validation

fix: change date fieldtype to Datetime in invoice
This commit is contained in:
Akshay 2024-12-11 12:38:33 +05:30 committed by GitHub
commit a05d2aa703
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -29,8 +29,8 @@ const partyData = {
const loyaltyProgramData = {
name: 'program',
fromDate: new Date(Date.now()),
toDate: new Date(Date.now()),
fromDate: new Date('12/10/2024'),
toDate: new Date('12/30/2024'),
email: 'sample@gmail.com',
mobile: '1234567890',
expenseAccount: accountData.name,
@ -122,6 +122,7 @@ async function createSalesInvoice() {
const sinvDoc = fyo.doc.getNewDoc(ModelNameEnum.SalesInvoice, {
account: 'Debtors',
party: partyData.name,
date: new Date('12/11/2024'),
items: [
{
item: itemData.name,

View File

@ -35,7 +35,7 @@
{
"fieldname": "date",
"label": "Date",
"fieldtype": "Date",
"fieldtype": "Datetime",
"required": true,
"section": "Default"
},