Skip to content

Commit

Permalink
Merge pull request #1047 from AbleKSaju/fix-sinv-validation
Browse files Browse the repository at this point in the history
fix: change date fieldtype to Datetime in invoice
  • Loading branch information
akshayitzme authored Dec 11, 2024
2 parents e4bd589 + d4016a5 commit a05d2aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions models/baseModels/tests/testLoyaltyProgram.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: '[email protected]',
mobile: '1234567890',
expenseAccount: accountData.name,
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion schemas/app/Invoice.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
{
"fieldname": "date",
"label": "Date",
"fieldtype": "Date",
"fieldtype": "Datetime",
"required": true,
"section": "Default"
},
Expand Down

0 comments on commit a05d2aa

Please sign in to comment.